How to map catalog item variable value to the field in RITM table

Sk Sharukh1
Tera Contributor

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 

 

 

SkSharukh1_1-1673420015522.png

 

I need to map to the below field 

SkSharukh1_2-1673420106151.png

How to achieve this ?

 

 

1 ACCEPTED SOLUTION

Sagar Pagar
Tera Patron

Hi @Sk Sharukh1,

 

You can mapped in workflow scripts as -

current.due_date = current.variables.due_date_variable_name;

 

Thanks,
Sagar Pagar

The world works with ServiceNow

View solution in original post

5 REPLIES 5

Hi @yaminikoduri333,

Try with Before update business rule on RITM table.

 

current.due_date = current.variables.due_date_variable_name;

 

Thanks,
Sagar Pagar

The world works with ServiceNow