...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Warning | ||
---|---|---|
| ||
This event is deprecated and will be removed in 2021. Use OnPostPutAwayOrder_OnHandleRegistrationFor... instead. |
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Use this event to
Excerpt |
---|
Process collected registrations for warehouse putaways prior to (possibly) splitting Warehouse Activity Lines. |
...
Description
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.TODO
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 PRIOR to the line being (possibly) split. When using this event, there may be a 1:N relation between the Warehouse Activity Line and Registrations.
// </param>
// <seealso cref="https://docs.taskletfactory.com/display/TFSK/OnPostPutAwayOrder_OnHandleRegistrationForWarehouseActivityLine"/>
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Put Away", 'OnPostPutAwayOrder_OnBeforeHandleRegistrationForWarehouseActivityLine', '', true, true)]
procedure OnPostPutAwayOrder_OnBeforeHandleRegistrationForWarehouseActivityLine(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.11 | Introduced |
...