How to populate Glide list from an array list in flow designer

Patrick Wachira
Tera Contributor

Am working in flow designer where I have populated an array.string action script i.e

"Empls Departments": {
"Empls_Departments_child0": [
"3425",
"3428",
"3627"
]

I need to place these departments into a Glide List (field list) for a singular employee. Any idea of how to accomplish this

 

1 ACCEPTED SOLUTION

Maik Skoddow
Tera Patron
Tera Patron

Hi @Patrick Wachira ,

a Glide List is nothing else than a comma separated string. So to fill the Glide List field just join your array with the comma:

Empls_Departments.Empls_Departments_child0.join(",")

Kind regards
Maik

If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.

View solution in original post

2 REPLIES 2

Maik Skoddow
Tera Patron
Tera Patron

Hi @Patrick Wachira ,

a Glide List is nothing else than a comma separated string. So to fill the Glide List field just join your array with the comma:

Empls_Departments.Empls_Departments_child0.join(",")

Kind regards
Maik

If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.

Hi @Patrick Wachira ,

Did my reply answer your question?

If so, please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.

If not, please tell me what you are still missing.

Many thanks and kind regards
Maik