- 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 09:29 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2021 05:29 PM
Let's backup. You have a list variable type on your catalog item. In your flow you are using Get Catalog Variables, picking the cat item and the list variable. Then in an Update Record, for the current record, field would be your IAM Roles and in the data pill you'd click on the Get variables>IAM Roles.
No for each, and it looks like you're using an inline script, you shouldn't need that either. I ran a test with watchlist and a variable list, works.

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