How to access the catalog item variable in script section of approval action in flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2020 07:28 AM
How to access the catalog item variable in script section of approval action in flow designer
- Labels:
-
flow designer
-
Multiple Versions
- 13,533 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-11-2020 10:51 AM
Hi Sumit,
Try the flow variables like below,
var field1 = fd_data.trigger.current.variables.variable_name;
Kindly mark my response correct and helpful if my suggestion resolved your query,
Thanks
Murali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2020 06:43 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2020 07:13 AM
Hi Sumit,
Kindly try the below, the current shouldnt be used here.
var field1 = fd_data.trigger.request_item.variables.type_in_the_text;
return field1;
Kindly mark my response correct and helpful if my suggestion resolved your query,
Thanks
Murali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2020 08:10 AM