- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2021 03:55 PM
Hi all,
Could someone please help me with list collector variable and flow designer?
I have a catalog item with list collector variable. I am trying to use flow designer to display the values.
Flow designer will list if there is only one value . however, if more than one, it comes up as blank.
How do I incorporate the script in below link so I can display the value in description?
I think it's a bug from the system.
Thanks in advanced for your assistance.
Solved! Go to Solution.
- Labels:
-
Flow Designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2021 01:01 AM
I mean here's my test flow:
If the network drives List Collector points to a table, you should be able to do the same just by plugging in your variable into step 2.
Could you post a screen shot of the definition of the list collector?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2021 05:48 PM
Hi Freddy,
You can create a action that parses the object into an array and can be used in your description to feed array values...
Example:
var list = inputs.param1.toString();
var array = list.split(',');
for (var i=0; i < array.length; i++) {
// use logic here to print the values in description
gs.log("Your values are: " + array[i]);
}
I hope the answer helps, Kindly Mark ✅ Correct or ???? Helpful if applicable., So that others get benefited in future for similar issues...
MF Sohail Khilji.
LinkedIn > https://www.linkedin.com/in/mf-sohail-khilji/
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2021 06:41 PM
Have you tried with Flow variables and a For Each loop to add one by one all the needed value to the variable?
Else do you know how to create a custom Action in Flow Designer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2021 06:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2021 09:21 PM