What table stores the data when you do Customer Shipment Entry, Mass Shipment

I am trying to make a BPM that fires and changes the data when the Mass Shipment is selected in the customer shipment entry. After clicking on Mass Shipment on the Customer Shipment Entry, the order lines display as Shipment lines but there is no data in the shipdtl table. What data directive or method directive can I use to change the data when the Mass Shipment action is clicked?
Thank you,
Richard

You’ll have to trace the process. I believe it’s all in memory in a dataset. You may be able to manipulate that dataset in whatever process that brings in the data (probably GetRows) in the Post-Processing method directive.

1 Like

AFAIK Mass shipments allows you to generate all the order lines so you can just indicate the quantities shipped in an easier way, instead of generating them one by one. The lines are in memory, not yet saved.

say you mass shipment an order with 10 lines. But you only ship 2 of them. All lines are shown upon mass shipment, but saving will only save the 2 lines where you indicated a quantity to ship.

You may use either directives to detect a new line … and proceed with what you intended to do…

If you really need to detect Mass ship use, you should do it in code and catch when button is clicked maybe?