- 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 11:15 PM
Hi @yaminikoduri333,
Try with Before update business rule on RITM table.
current.due_date = current.variables.due_date_variable_name;
Thanks,
Sagar Pagar