Trying to invoke / display the Print Tags option in Receipt Entry after receipt line is marked as Received. I’m trying this in a post process BPM. Anyone ever tackle something like this?
If you’re in Kinetic, I would do this with events.
There’s already a “PrintTagsTool” event. I would copy that and change the trigger to DataTable > Column Changed > RcvDtl > Received.
Add a Condition after the trigger where {RcvDtl.Received} === true
Then connect the true side of the condition to the rest of the event chain.
So, if the user changes RcvDtl.Received to TRUE (checks the box), the event will collect the required information and open the MtlTags slideout.
If they change it to FALSE (uncheck the box) nothing happens.
3 Likes