Convert Workflow to Flow Designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2024 05:20 AM - edited 11-03-2024 11:50 PM
I have created many workflows for the catalog items and now I want to convert all the workflows to flow designers.
I'm used to workflows and flow designer is new to me, need help to convert one of the WF to FD.
I have used run script activity and below code to fire event and updated request field on RITM.
var approvers = [];
var sysApprover = new GlideRecord("sysapproval_approver");
sysApprover.addQuery("sysapproval", current.sys_id);
sysApprover.query();
while (sysApprover.next()) {
approvers.push(sysApprover.approver.toString());
}
//var catitem = current.cat_item.name;
gs.eventQueue('ssrm.task.closed', current, '', approvers);
current.request = workflow.scratchpad.req;
current.update();
How to fire event and include all the approvers of the RITM(approved/rejected/no longer required) in parm2 using FLOW DESIGNER?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2024 05:09 AM
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2024 04:31 AM
Thank you so much for sharing thee information.