how to populate List collector value in flow designer

KaMmILa__
Tera Expert

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 : find_real_file.png

 

Field:

find_real_file.png

 

Flow : The variable is not selectable 

find_real_file.png

 

I used the below script : 

return fd_data.trigger.current.fsv_new_netbadge_iam_roles; below is the erro
find_real_file.png
1 ACCEPTED SOLUTION

Harsh Vardhan
Giga Patron

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;

View solution in original post

7 REPLIES 7

Not able to select that 

find_real_file.png

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.

Harsh Vardhan
Giga Patron

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;