Flow designer script not working as expectedDescriptionWhen trying to get the variable details in the 'if' block of the Flow by using the below statement in the script section, it was not evaluating at all. fd_data._1__get_catalog_variables.variable.name Resolution As the above scripts gets the variables from Get Catalog Variables action, it was not working as expected. After changing the script to the one below to get the variables from the RITM record from the Flow Target, the issue was resolved. fd_data.trigger.request_item.variables.variable.name.getValue();