I am trying to copy the MR number to a file for every transcation that comes though a cetain interface I have a xlt proc that I am adding to pre proc inside of xlate I can get the mr# to copy to this file by using puts but I cannot get it to append it keeps over writing here is what I am doing any suggestions?
set MUDR $xlateInVals
set MRList [open d:/quovadx/qdx5.7/integrator/MRList.txt w]
puts $MRList “$MUDR r n”
close $MRList