I'm currently working on an advance PO Workflow. I use several events that use core/framework events IDO Insert/Update that call a single event that has my custom PO approval logic and prompts. In the PO Workflow standalone event I set the SETPARMVALUES(Status = "0") or SETPARMVALUES(Status = "1") based on the prompts voting results. I'm using looping logic in the core/framework event that is currently waiting for a return value so I can break out of the loop to complete suspension.
In the core/framework event i call a Generate Event using the following settings
EVENTNAME("_ARN_PoWorkFlow")
SYNCHRONOUS(TRUE)
TRANSACTIONAL(FALSE)
PARMS(_ARN_PoNum = E(Row.PoNum), _ARN_PoRowPointer = E(Row.RowPointer), _ARN_VenderNum = FP("VendNum"))
SET(RV(Status) = Status)
When the event system detects my PO change, it does fire the events. However I get the error bellow.
Value requested for unknown parameter: Status
Event Name is IdoOnItemUpdate.
Event Handler Sequence is 23.
Event Action Sequence is 20.
If anyone has seen this issue or have feedback on how to correct it would be great.
Thanks,
Jonathan L.