Retrieve specific value from array field in flow designer condition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2024 09:20 PM - edited 01-15-2024 09:24 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2025 12:37 PM
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)