- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2021 12:27 PM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2021 04:06 AM
Hi
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2021 04:06 AM
Hi
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2021 10:41 AM
Hi
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