- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2018 09:06 AM
I want to populate the Request Item Assignment Group Field from the Catalog Items's Fulfillment Group ('group') Field on the request and the task. it is set to Service Desk. i have other groups for other cat items
How would I populate this in a run script. I tried
current.assignment_group = current.cat_item.group;
current.assignment_group = current.item.group; and no dice.
Solved! Go to Solution.
- Labels:
-
Request Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2018 09:21 AM
Hello
I dit try with this:
current.assignment_group = current.cat_item.group;
And works.
The workflow is on the sc_req_item table.
Please, mark correct or useful if i helped you
Thanks
Ariel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2018 12:16 PM
I ended up creating an onLoad client script that would populate the RITM
Then on the task, I used current.assignment_group = current.cat_item.group;
Not sure why It didn't work originally but its working now. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2025 03:00 PM