119 Name is not unique (binding symbol 'mfini')

 3 Replies
 0 Subscribed to this topic
 17 Subscribed to this forum
Sort:
Author
Messages
John Desmarais
Basic Member Send Private Message
Posts: 20
Basic Member
Getting an error on a custome program that we can't explain (or decipher).  The odd part here, is that the file it is complaining about is only used for input and there is not a single PERFORM 800-WRITECSV-MAFVNIN in the program.  Any idea what this error is actually trying to tell me?

WriteCSV():File /lawson/lawprod/law/test9/hht/MAFVNIN/MAFVNIN MAFVNIN 0 Not In Write Mode

Execution error : file 'mfini'

error code: 119, pc=0, call=1, seg=0

119 Name is not unique (binding symbol 'mfini') John Desmarais Novant Health

Ragu Raghavan
Veteran Member Send Private Message
Posts: 477
Veteran Member
Could you run it in debug and figure out which line in the code it bombs at? That may provide a clue.
Sam Simpson
Veteran Member Send Private Message
Posts: 239
Veteran Member
Check the workfile attributes. It should be input only or in the program open it as input only. It could be defined as input/output But without looking at your custom program, it could be anything.
John Desmarais
Basic Member Send Private Message
Posts: 20
Basic Member
Well, in the end it was a missing SECTION end - which caused the program to drop into weird and unexpected areas.