How to create multiple catalog tasks for single RITM using workflow/Flow designer?

Siva P
Tera Expert

How to create multiple catalog tasks for single RITM using workflow/Flow designer?

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @sambasiva ,

This video is what you all need to configure: https://www.youtube.com/watch?v=xOc342NUzI8

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep

View solution in original post

8 REPLIES 8

sonali panda1
Kilo Sage
Just add each catalog task activity one after the other . If it needs to simultaneous have them created at one go else wait for completion of one catalog task activity and then it goes to another .

Hi Sonali,

Thanks for your response. I have added all catalog tasks as below but here i need one more other action for one catalog task. If the task has been created and then a record to be inserted in custom table which will take the values from the variables  which is used in RITM. I used below script but its not working.

var fncr = new GlideRecord('u_tech_cpo');
fncr.initialize();
fncr.u_selling_unit= current.variables.selling_unit;
fncr.u_cpo_number= current.variables.cpo_number;
fncr.u_business_function= current.variables.business_function;
fncr.u_cpo_date= current.variables.cpo_date;
fncr.u_opportunity_reference= current.variables.opportunity_reference;
fncr.u_sold_to_party= current.variables.sold_to_party;
fncr.insert();

 find_real_file.png

dmathur09
Kilo Sage
Kilo Sage

Hi Sambasiva,

You can create multiple task activity in the RITM workflow. Something like below mentioned screenshot 

find_real_file.png

Regards,

Deepankar Mathur

 

Community Alums
Not applicable

Hi @sambasiva ,

This video is what you all need to configure: https://www.youtube.com/watch?v=xOc342NUzI8

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep