1. create new process
2 Create Notification
3. Create Message
4. Create Body with Message
5. Assign the message in Notification Properties
6. Design Process with Start and End button
7. Drag Notification Into Design process. Set the User name as Performer.
8. Save File
9. Connect to Database
10. Validate the Design
11. Initiate/Run the Program with Short Name
12. Login Apps with User Name provided as Performer in Node. Navigate to Notifications, See the Results.
2 Create Notification
3. Create Message
4. Create Body with Message
5. Assign the message in Notification Properties
6. Design Process with Start and End button
7. Drag Notification Into Design process. Set the User name as Performer.
8. Save File
9. Connect to Database
10. Validate the Design
11. Initiate/Run the Program with Short Name
CREATE
SEQUENCE XX_LV_WF_SEQ START WITH 10 INCREMENT BY 1;
BEGIN
wf_engine.createprocess(itemtype => 'XXDEMOWF',
itemkey => XX_LV_WF_SEQ.NEXTVAL,
process => 'XXWFPROCESS'
);
wf_engine.startprocess ( itemtype => 'XXDEMOWF',
itemkey => XX_LV_WF_SEQ.currval
);
commit;
END;
12. Login Apps with User Name provided as Performer in Node. Navigate to Notifications, See the Results.













