Good Morning,
Does anyone know if/how to use indirect addressing on a job call on an NX100 controller? For example, I have a LOT of jobs with a similar Job name; i.e., D##_Weld; where ## represents the die number. I'm currently doing something like this:
CALL JOB:D1_WELD IF B001=1
CALL JOB:D2_WELD IF B001=2
...
...
CALL JOB:D12_WELD IF B001=12
Obviously, with 12 dies and 7 actions with each die, this will result in 84 job calls!!
I would prefer to have ONE Call that looks like this:
CALL JOB:D[B001]_WELD
This method would result in 7 job calls!
Thanks!!