Multiple Choice values in Flow Designer for a Choice field

Anubhav24
Mega Sage
Mega Sage

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 ?

 

2 REPLIES 2

Brad Warman
Giga Sage

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.

 

BradWarman_0-1716529818312.png

 

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');

@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.