Warning | ||
---|---|---|
| ||
This event is deprecated and will be removed in 2021. Use OnPostPickOrder_OnHandleRegistrationFor... instead. |
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
...
When using this event, there may be a 1:N relation between the Warehouse Activity Line and Registrations (one Warehouse Activity Line can have multiple Registrations). The event is executed once for each individual Mobile WMS Registration, meaning the same Warehouse Activity Line may be triggered several times, but with different Registrations.
Template
...
// </param>
// <seealso cref="https://docs.taskletfactory.com/display/TFSK/OnPostPickOrder_OnHandleRegistrationForWarehouseActivityLine"/>
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS PickMOB WMS Move", 'OnPostPickOrderOnPostMoveOrder_OnBeforeHandleRegistrationForWarehouseActivityLine', '', true, true)]
procedure OnPostPickOrder OnPostMoveOrder_OnBeforeHandleRegistrationForWarehouseActivityLine(var _Registration: Record "MOB WMS Registration"; var _WarehouseActivityLine: Record "Warehouse Activity Line")
begin
end;
Version History
Version | Changes |
---|---|
MOB5.11 | Introduced |
...