Help with trigger

Never heard of that ...

By any chance, did you disable the triggers with the DISABLE TRIGGERS statement in one of the sessions?


Regards, RealHeavyDude.
 
I think problem is you are trying to open the same file (test.txt) twice when 2 records changed one by one.
try
def var filename = "test" + STRING(NEXT-VALUE(some-seq)) + ".txt".
output to value (filename) append.
put unformatted tst_mstr.tst_field1 " " tst_mstr.tst_field2 skip.
output close.
 
Back
Top