This page (revision-6) was last changed on 26-Nov-2021 10:22 by kparrott

This page was created on 26-Nov-2021 10:22 by JEscott

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
6 26-Nov-2021 10:22 1 KB kparrott to previous
5 26-Nov-2021 10:22 1 KB jaiken to previous | to last
4 26-Nov-2021 10:22 1 KB jaiken to previous | to last
3 26-Nov-2021 10:22 1010 bytes khiggs to previous | to last
2 26-Nov-2021 10:22 1005 bytes khiggs to previous | to last
1 26-Nov-2021 10:22 423 bytes JEscott to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 3 changed one line
This command is used to raise an exception to the user. This command should only be used to absolutely stop a save from taking place.
This command is used to raise an exception to the user. This command should only be used to absolutely stop a save from taking place. It throws a database exception that displays the brief text in Operand 1 along with the stack trace of where it came from.
At line 5 removed one line
If not setup as a message number it throws a database exception that displays the brief text in Operand 1 along with the stack trace of where it came from.
At line 7 changed 2 lines
To have a clean message create a message in IMMS starting with WF such as WF-00001.
\\ \\
In this sample before an employee can apply for any postings until a phone number is added to the profile. If no phone number is provided than the application will not be created and the candidate will be issued an exception containing the value of Operand 1.
At line 10 removed one line
In this sample before an employee can apply for any postings, a phone number must be added to the profile. If no phone number is provided when the application is entered, it will not be created and the candidate will be issued an exception containing the value of the message in Operand 1 (on line 00200).
At line 12 removed 4 lines
First step is to go to IMMS and create a new message. For our example well create one with the number WF-10001 and the message test of "Please Provide a contact number before applying".
Then on IMUC our sample Workflow usercalc would be added for WF_RAP and look like:
At line 17 changed 3 lines
|00010| LET|V| PHONE|EQNL|DB|RCA.PHONE_NUMBER|A |(999) 999-9999 |00100|
|00100| IF|V|PHONE|EQ|A|(999) 999-9999| | |00200|99999
|00200| STOP|A| WF-10001| | | | | |99999|
|00010| LET|V| PHONE|EQNL|DB|RCA.PHONE_NUMBER|A |(999) 999-9999 |99999|
|00100| IF|V|PHONE|EQ|A|9999| | |00200|
|00200| STOP|A| Please Provide a contact number before applying| | | | | |99999|