Use this event to
Process collected registrations for warehouse movements after (possibly) splitting Warehouse Activity Lines.
See also: OnPostPutAwayOrder_OnBeforeHandleRegistrationForWarehouseActivityLine
Description
This event is executed once for each individual Mobile WMS Registration after Warehouse Acitivity Lines have been (possibly) split.
When using this event it is always an 1:1 relation betweeen a Registration and a Warehouse Activity Line.
Template
// <param name="_Registration">
// This event is executed once for each individual Mobile WMS Registration, meaning the same Warehouse Activity Line may be triggered several times, but with different _Registration's.
// </param>
// <param name="_WarehouseActivityLine">
// This is the _WarehouseActivityLine AFTER the line being (possibly) split. When using this event it is always a 1:1 relation between the Warehouse Activity Line and Registration.
// </param>
// <seealso cref="https://docs.taskletfactory.com/display/TFSK/OnPostPutAwayOrder_OnBeforeHandleRegistrationForWarehouseActivityLine"/>
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Put Away", 'OnPostPutAwayOrder_OnHandleRegistrationForWarehouseActivityLine', '', true, true)]
procedure OnPostPutAwayOrder_OnHandleRegistrationForWarehouseActivityLine(var _Registration: Record "MOB WMS Registration"; var _WarehouseActivityLine: Record "Warehouse Activity Line")
begin
end;
Example
See:
TODO (Excerpt search Document Type and Event Prefix)
Version History
Version | Changes |
---|---|
MOB5.13 | Introduced |