Retrieve specific value from array field in flow designer condition

Anupriya_11
Tera Contributor

Hi Team ,

 

I have a requirement  where i need add a condition  to retrieve specific value from array.object  field in flow designer condition so that based on that value task will generated.

 

thanks

 

5 REPLIES 5

2mustang
Tera Contributor

So there are two things to consider in Array.Object:
1) You have to index the array

2) You have to determine which property of the object you want to use. 

 

Scripting is likely the easiest way to accomplish this. For instance if you have MRVS and want  a single value from a row you would want the following format: 

return fd_data._1__get_catalog_variables.testing_mr_vs[0].mr_single_line_text;
//(flow designer method).(First step that is "Get Catalog Variables").(The internal name of the MRVS)[the index number of the mrvs array].(The individual variable within that index)