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

« Previous Version 4 Next »

Use this event to

Process collected registrations for warehouse movements after (possibly) splitting Warehouse Activity Lines.

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;


Examples

  • Page:
    Case: Add Line Steps to Warehouse Receipts A customer wishes to start using Item NetWeight and -GrossWeight, but have currently no values registered at the Item Card. Create a temporary customization is to collect these weights when goods are received.
  • Page:
    How-to: Subscribing to standard events — You may subscribe to posting events in the Business Central base App to process collected values, or when events offered by Extension API do not fit your exact need.


Version History

Version

Changes

MOB5.13Introduced
  • No labels