How to bring in Flow designer Catalog Task -task short description update from RITM variable display

Nisha30
Kilo Sage

HI,

In Flow designer I want to update 'Task Short description' with the Value what is in RITM variable selected. When I select the variable it gives the DB value not the displayed value

 

Nisha30_1-1726573022949.png

 

 

 

Nisha30_0-1726573000367.png

 

6 REPLIES 6

Hello @Nisha30, if you wish to capture the display value, then you can make use of getDisplayValue() method thru inline script. Can you try to follow this and share the feedback? something like below:

----------

var shortDesc = fd_data.trigger.request_item.variables.select_activity.getDisplayValue();
return shortDesc;
Nishant8_0-1726648456585.png

 

seethapathy
Giga Guru

Hi @Nisha30  you can try the below script, if it is helpful mark it as helpful and accepted solution

var sd= fd_data._1__get_catalog_variables."your field backend name";

return sd;