how to get approvers in catalog task form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2018 11:29 PM
Hi all,
created a workflow for a service catalog. created a catalog task using catalog task workflow activity after getting approvals at ritm level.
in catalog task form mentioning assignment group as "Fulfillment gROUP". i want to display assignment group members as Approvers in approvers tab.how to acheive this . please advice.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2018 12:50 AM
Hi,
For this you can use approval group activity in workflow for sending approval to catalog task approvers tab using related fields option in group field of workflow approval group activity.See the attachment,it will be clear:
Please mark my answer as correct/helpful if it helps you to find the solution.
Thanks and Regards,
Apurva Malewadikar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2018 03:07 AM
hi i written code , dont have much knowledge on scripting please check it
var app = new GlideRecord('sysapproval_approver');
app.addQuery('sysapproval',current.sys_id);
app.addQuery('state',"approved");
app.query();
if (app.next()){
app.approver=task.assigned_group;
}
b
i am using different group in catalog task(sc_task) form for eg: assignment group =fulfillment group
an in that group 3 group members are there . these 3 members should visible at approver tab to approve the task.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2018 05:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2023 02:52 AM
where can it apply