Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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::CodeunitCodeunit::"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.13Introduced
  • No labels