08-05-20 11:36 AM
11-05-20 12:07 PM
11-05-20 02:06 PM
Thank you for Responding,
I need to compare each and every value in collection A is available in collection B.
for example If collection A has 310 record and collection B has 600 records. My requirement is take one value from collection A and search for the same value in collection B.
If the value found I have to store that record in Collection c.
If the value not found I have to store the Record In collection D.
I have achieved the requirement using nested loops but it's taking more time to get the result .The loop iterates 310*600 times. I need a method to reduce the time for this requirement.
Thanks & Regards,
Nagababu
11-05-20 03:16 PM
Hi, Nagabubu.
You can try to use Filter action to reduce your execution time. The filter action is part of the basic vbo coming with the installation.
Try it and give us some feedback of your results. If it does not work, we can try something else.
Best regards.
|
Thank you for Responding,
I need to compare each and every value in collection A is available in collection B.
for example If collection A has 310 record and collection B has 600 records. My requirement is take one value from collection A and search for the same value in collection B.
If the value found I have to store that record in Collection c.
If the value not found I have to store the Record In collection D.
I have achieved the requirement using nested loops but it's taking more time to get the result .The loop iterates 310*600 times. I need a method to reduce the time for this requirement.
Thanks & Regards,
Nagababu
11-05-20 03:41 PM
11-05-20 11:34 PM
3.But it's throwing an error like "could not execute code stage because the value your searching is not available in collection B even the value is available in collection B.
11-05-20 11:38 PM