- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2021 08:39 AM
Hello
I have a flow that needs to set the list collector values to a list field in another table , When I use the dotwalk directly I cannot see the field populated in the flow, If I use the script it is throwing an error below.
both the variable and field points to same table
Variable :
Field:
Flow : The variable is not selectable
I used the below script :
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2021 08:21 PM
You can directly fetch that updated record and then use the create record flow action .
eg:
1. Triger action
2. getVariables
3. Create record : here you will set the field value eg:
var ds= fd_data.trigger.current.variables.<variable Name>;
return ds;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2021 08:58 AM
Please use Catalog client script to populate variables. Flow is not ideal for this situation
you may have to use AJAX call to get data using client script...depending on the requirement you have

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2021 08:59 AM
You need to use a For each in FLOW on a list collector. For each value, do this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2021 11:11 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2021 11:22 AM
In the field IAM Roles, where it says Select a choice, use the data pill and choose your for each record.