CM AMMEND
-
Start
-
The workflow process begins at the "Start" node.
-
Get the Current Date (A3 Activity)
-
The workflow moves from Start to the "A3" step.
-
At "A3", the system executes a script that retrieves the current date and stores it in a variable called getdate.
-
(Technical note: It uses C# code to set getdate = today’s date in short format, e.g., 6/5/2024.)
-
-
Update Amendment Status (A1 Activity)
-
The workflow transitions from A3 to "A1".
-
At "A1", the workflow updates a database table (BT20.CMAmendChg):
-
It sets the field ApprovalDate in the current amendment change record to the value held in getdate (today’s date).
-
This marks the approval date for the amendment change.
-
-
End
-
After the table has been updated, the workflow moves from "A1" to the "End" node.
-
This completes the workflow for this instance.