The CreatorCon Call for Content is officially open! Get started here.

Dotwalk using script in flow designer

ss123
Tera Contributor

Hi All,

Can anyone assist on this?

I need to dotwalk a user's network id from a MRVS and populate it on the create record in flow designer. 

 

this is my script but seems not working.

var accountID = fd_data._12__for_each.item.user_s_or_group_s_to_be_added_or_modified.u_network_id;
return accountID;
ss123_0-1724063691335.png

 

I need to get/dotwalk the Network ID [u_network_id] of the user from the MRVS.
ss123_0-1724063459115.png

 

  Thanks!!
1 ACCEPTED SOLUTION

Basically you should just need to select which table to look up (the table you're referencing in the MRVS).

Then as condition, select sysID is equal to -> Data picker to get the value of the for-each-value of your specific MRVS variable.

View solution in original post

5 REPLIES 5

Mark Manders
Mega Patron

You can't dotwalk inside of the data piIl.

Define the variable as accountID (var accountID = fd_data._12__for_each.item.user_s_or_group_s_to_be_added_or_modified) and then use GlideRecord to query to the table using that variable (as addition to Dnyaneshwaree's script).


Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark