How to bring in Flow designer Catalog Task -task short description update from RITM variable display
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2024 04:37 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2024 01:35 AM
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:
----------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2024 04:32 AM
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;