Code: Select all
Call DSU.AuditRoutineOne(InputArg1,DSJ.ERRFATAL)
FileName = InputArg2:InputArg3
Call DSU.AuditRoutineTwo(FileName,DSJ.ERRFATAL)
Ans="JobDone"Moderators: chulett, rschirm, roy
Code: Select all
Call DSU.AuditRoutineOne(InputArg1,DSJ.ERRFATAL)
FileName = InputArg2:InputArg3
Call DSU.AuditRoutineTwo(FileName,DSJ.ERRFATAL)
Ans="JobDone"I'm guessing it is being passed to functions inside the custom routine.ErrorMode is a value specifying how other routines using the handle should report errors. It is one of:
DSJ.ERRFATAL Log a fatal message and abort the controlling job (default).
DSJ.ERRWARNING Log a warning message but carry on.
DSJ.ERRNONE No message logged - caller takes full responsibility.