- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2023 10:56 PM
In the catalog item , I have one variable of Type date/time in the variable set which i need to map to due date field in RITM table
I need to map to the below field
How to achieve this ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2023 10:58 PM
Hi @Sk Sharukh1,
You can mapped in workflow scripts as -
current.due_date = current.variables.due_date_variable_name;
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2023 10:58 PM
Hi @Sk Sharukh1,
You can mapped in workflow scripts as -
current.due_date = current.variables.due_date_variable_name;
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 12:00 AM
Thank you @Sagar Pagar It worked!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2023 11:01 PM
You may refer to this:
Solved: Due Date on RITM - ServiceNow Community
else if business process is different then you may need to assign it via the Flow or the Workflow depending on the Process engine associated with it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2023 11:02 PM
@Sagar Pagar , Thanks for the response. Can we achieve this via after business rule ?