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 2 Current »

Use this event to

Modify response elements to be displayed on the mobile device. (Location Not using Bins)

Description

This event only affects entries with locations with "Bin Mandatory" = true.
It modifies/ adds response elements to the History Lookup function.


Template    

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS History", 'OnLookupOnHistory_OnAfterSetFromWarehouseEntry', '', true, true)]
    local procedure OnLookupOnHistory_OnAfterSetFromWarehouseEntry(var _LookupResponseElement: Record "MOB NS WhseInquery Element"; _WhseEntry: Record "Warehouse Entry")
    begin
    end;


Example

    // [Example]: Modify the DisplayLine1 to show the Bin Type Code.

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS History", 'OnLookupOnHistory_OnAfterSetFromWarehouseEntry', '', true, true)]
    local procedure MyOnLookupOnHistory_OnAfterSetFromWarehouseEntry(var _LookupResponseElement: Record "MOB NS WhseInquery Element"; _WhseEntry: Record "Warehouse Entry")
    begin
        _LookupResponseElement.Set_DisplayLine1(_WhseEntry."Bin Type Code");
    end;



More examples

Version History

Version

Changes

MOB5.45Introduced



  • No labels