Multiple Choice values in Flow Designer for a Choice field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 06:23 AM
Hi All,
While Working in flow I faced below issue:
If I am making a RITM to Closed Complete state and while selecting the values for the State field , if there are multiple Closed Complete values with their value being different in backend but same label how do I identify which one is which ?
Is there any way to check the exact value in flow designer ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 10:51 PM - edited 05-23-2024 10:52 PM
Hi @Anubhav24,
If you're using the update record action and the Requested Item table, then only the display values related to that table should be appearing. If you have multiple state values of Closed Complete on the Requested Item table itself, I'd temporarily disable the ones not needed in the state field, then update your flow, then re-enable the disabled values.
Alternatively, you could use code to get the value instead of the display value using something like:
return fd_data.trigger.current.state.getValue('closed_complete');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 11:46 PM
@Brad Warman Thanks a lot for your reply , I think I am also going to do the same deactivate the ones not needed and then select the values and then re-enable the values . I think there is no system to check the exact record value using sys_ids.
Also could you please help me on the flow designer objects available for use like we have "fd_data" and also by using these objects what all values can be accessed.