- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2022 02:22 AM
Hi, I have requirement to trigger catalog tasks based on (select box) variable value on ritm record for a catalog item.
The variable is hidden on catalog form and is visible on ritm(once the catalog item is submitted)
The user then update the select box variable value and save it.
Based on it's value, the flow in flow designer should proceed but I am unable to get it's value from RITM.
Any idea?
Or is there a way to trigger flow designer based on variable value (the variable is in a catalog item).
Thanks,
Rahul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2022 01:09 AM
Hi, you just need to use the 'Get Catalog Variables' action to get the latest variable value after an update.
In the below example, a select box variable value is updated at action step 1 on an initial catalog task. Executing the 'Get Catalog Variables' action at step 2 retrieves that updated value. You can then use that updated value as necessary in subsequent steps (for example on the if condition at step 3):
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2022 01:09 AM
Hi, you just need to use the 'Get Catalog Variables' action to get the latest variable value after an update.
In the below example, a select box variable value is updated at action step 1 on an initial catalog task. Executing the 'Get Catalog Variables' action at step 2 retrieves that updated value. You can then use that updated value as necessary in subsequent steps (for example on the if condition at step 3):
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2022 04:45 AM
Thanks.
I was taking the catalog variables of initial step (before the ritm is updated).