stop_resume_item_onmessage.fsm2.fsmI tried to stop a item on arrival by processflow, but when I tried to resume , it failed to.
There are two methods I used:
first model I used wait-event until DP1 receive message , it not work
second model I used custom coder such as
if (objectexists(current.stoppedItem)) {
conveyor.itemData[current.stoppedItem].resume();
current.stoppedItem=NULL;
},it still not work.
Can you help me find why my model not work?