How to create dynamically n number of catalog task for single RITM using flows

rahul16
Giga Guru

I have a field on the form called Number of sc_task which is a string field.

 

Using this number I want to create the catalog tasks from the flow designer.

 

If a user enters 5 then for one RITM I have to create 5 catalog tasks.

4 REPLIES 4

Mike_R
Kilo Patron
Kilo Patron

Untested but you can try something like this

Mike_R_0-1667495347691.png

 

Otherwise create a custom action and script it

 

i will try thank you

Hi @Mike_R how to auto increment the counter value?

In the set flow variable section

add inline script,

Mike_R_0-1667831272524.png

 

 

var data = fd_data.flow_var.variableName+ 1;
return data;