Palletizing when Calling Sub-Programs

Hello,

I am having trouble using the palletizing feature when calling Sub Programs.

I am using the palletizing feature to remove 20 parts from a location in a specific called sub-program. However the palletizing feature loops the entire program rather than the specific sub program that I called to run. Is there a way to isolate specific nodes that the palletizing feature loops rather than every node in the program?

I want it to loop the “MOVEL” node and then go back to script line 102 to grab the next part in the “pallet.” Instead the script is jumping back to line 2 and running everything else until it sees line 102 again. Any ideas?

If you want it to loop a subprogram, you’ll have to put that in a separate loop. Otherwise it’s going to finish the subprogram call and move on, at which point it loops the whole program

1 Like

Thanks @eric.feldmann,

Easy fix! Thank you, Sir!