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

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
82 26-Nov-2021 10:22 33 KB jaiken to previous
81 26-Nov-2021 10:22 33 KB jaiken to previous | to last WORK FLOW IN OPEN ENROLLMENT ==> WORKFLOW IN OPEN ENROLLMENT

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 136 changed one line
;[Action|EVENT_CODE]:It is suggested to prefix all Open Enrollment workflow actions with OE.
;[Action|EVENT_CODE]:It is suggested to prefix all Open Enrollment workflow actions with OE. For this example, OE SUBMITTED will be used as the Action.
At line 144 changed one line
;[User Calc|USER_CALC_CODE]: It is suggested that the user calc code should prefixed with WF_OE to easily identify the workflow user calcs for Open Enrollment.
;[User Calc|USER_CALC_CODE]: It is suggested that the user calc code should prefixed with WF_OE to easily identify the workflow user calcs for Open Enrollment. For this example WF_OE_EMAIL_SUB is used.
At line 150 added 2 lines
\\
__Variables__
At line 153 added 7 lines
There are two variables required for this work flow user calc.
||Name||Type||Initial Value||Length
|new_election_stage|Char| |
|old_election_stage|Char| |
At line 162 added 7 lines
|10|IF|CF|UPDATING|EQ|B|TRUE| | |15|99999|
|15|LET|V|old_election_stage|EQNL|OV|BOEE.ELECTION_STAGE|A|01|16| |
|16|LET|V|new_election_stage|EQNL|NV|BOEE.ELECTION_STAGE|A|10|17| |
|17|IF|V|new_election_stage|NE|V|old_election_stage| | |20|99999|
|20|IF|NV|BOEE.ELECTION_STAGE|EQ|A|10| | | 30|99999|
|30|ACT|AC|OE SUBMITTED|LOG|$S|CURRENT-DATE|RT|42032|99999| |<<EID.FIRST_NAME>> <<EID.LAST_NAME>> has submitted their benefit elections.
|99999|EXIT| | | | | | | | | |
At line 153 removed 6 lines
;Line 10 : This line checks to see if an update has been done.
;Line 15 :This line sets a variable equal null to the old election stage.
;Line 16 :This line sets a variable equal null to the new election stage.
;Line 17: This line checks if the variable for old election stage does not equal the variable for the new election stage.
;Line 20: This line checks if the new election stage equals 10 (Submitted).
;Line 30: This line calls the workflow action defined in IMWA.
At line 171 added one line
Line 10 : This line checks to see if an update has been done.
At line 173 added 13 lines
Line 15 :This line sets a variable equal null to the old election stage.
Line 16 :This line sets a variable equal null to the new election stage.
Line 17: This line checks if the variable for old election stage does not equal the variable for the new election stage.
Line 20: This line checks if the new election stage equals 10 (Submitted).
Line 30: This line calls the workflow action defined in [IMWA] (OE SUBMITTED) and will email person code 42032.
Line 99999: This will end the user calc.