
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 08:54 PM
Dear all,
Can someone suggest an action item which takes the input as comma separated strings and returns an Array?
NOTE - I need this as an custom action to be reused in the Flow Designer please.
Regards,
Anish
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 11:08 PM
Hi Anish,
Here is the custom action to convert comma separate string to an array:
(function execute(inputs, outputs) {
outputs.output_parameter = inputs.input_parameter.split(',');
})(inputs, outputs);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 09:48 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 11:02 PM
What is wrong in the above Action designed? Why is the Output variable not returning any value?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 11:30 PM
Buddy, thanks. But can you take a look at the below responses and screenshot and help me why this is not happening?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 11:08 PM