Hints on Error_SYS tags¶
There must be a unique tag for different error/warning/info messages¶
Editor provides warnings if the tags in Error_Sys calls are not unique. Here messages in the file are checked
Example of Incorrect Code:
Error_SYS.Appl_General(lu_name_, 'PICKEXIST_NOPARK: This shop order has running clocking transaction(s) in dispatch list clockings.You must stop the clocking(s) first.');
Error_Sys.Appl_General(lu_name_, 'PICKEXIST_NOPARK: Shop Order has a Pick List. Can not Park.');
Example of Correct Code:
Error_SYS.Appl_General(lu_name_, 'CLKEXISTS1: This shop order has running clocking transaction(s) in dispatch list clockings.You must stop the clocking(s) first.');
Error_Sys.Appl_General(lu_name_, 'PICKEXIST_NOPARK: Shop Order has a Pick List. Can not Park.');
Actions Available:
- Add an IgnoreUniqueTag.
Tag must be the same for same error/warning/info message¶
Editor provides warnings if the tags in Error_Sys calls are not same for the same message. Here messages in the file are checked.
Example of Incorrect Code:
Error_SYS.Appl_General(lu_name_, 'CLKEXISTS1: Shop Order has a Pick List. Can not Park.');
Error_Sys.Appl_General(lu_name_, 'PICKEXIST_NOPARK: Shop Order has a Pick List. Can not Park.');
Example of Correct Code:
Error_SYS.Appl_General(lu_name_, 'CLKEXISTS1: Shop Order has a Pick List. Can not Park.');
Error_Sys.Appl_General(lu_name_, 'CLKEXISTS1: Shop Order has a Pick List. Can not Park.');
Actions Available:
- Add an IgnoreSameTag marker.
This page is generated from IFS Developer Studio - for latest update, see help pages in the tool itself.