- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 09:45 AM
Hello Community,
In catalog item using one list collector variable Assigned_to . when user select one user then flow should create one sctask.
if user select two users, then flow should create two sctask.
how can I do it, please suggest me, I am using flow designer for this catalog item.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 10:12 AM
@Vinod S Patil Here is how you should configure the flow for your catalog item.
Please mark my response helpful and accepted solution if it addresses your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 09:50 AM - edited 09-27-2024 09:50 AM
@Vinod S Patil Inside your flow, you can use the split operator to split the comma separated assigned_to variable value (which is noting but comma separated sys_ids of the chosen users) and use a For each block to fetch the value of assigned to user record, you can use a Create Record action in the same For each block to create an SC task and assign it to the user extracted using split+look up record step.
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 10:12 AM
@Vinod S Patil Here is how you should configure the flow for your catalog item.
Please mark my response helpful and accepted solution if it addresses your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 10:53 AM
@Sandeep Rajput Thank you so much 🙂