Populate assignment group of catalog task based on RITM's requested for location

Harsha34
Tera Expert

Hello everyone,

@Ankur Bawiskar if you can please help on this.

 

I am trying to populate assignment group of catalog task based on RITM requested for location through flow designer.

 

The script is working fine with indexOf but this might not give correct results if required text e.g Noida or Chennai is at last or in middle position of location .

Below is the one that I used in script of assignment group of flow designer:

if (locations.indexOf("noida"))
 
Now, if requested for location is like 'abcdNoidaefg' then what should i use in place of indexOf , somewhat like contains or like?
Please suggest.
 
Regards,
Harsha
 
2 ACCEPTED SOLUTIONS

Its not complicated, it will work like contains search only.

Just use this

 

if (locations.toString().toLowerCase().indexOf("noida")>-1|| locations.toString().toLowerCase().indexOf("chennai")>-1 )

-Anurag

View solution in original post

Ohk great then I will try this and confirm you soon. Thanks a lot for your help, I’ll update you by tomorrow if it works or not.

Thanks,

Harsha

View solution in original post

25 REPLIES 25

Hi,

 

The approach is correct but could you please suggest the script as in flow designer script works differently and the way to write.

 

Thanks