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

Filter Warehouse Entries to be displayed on the mobile device. 

Description

This event affects entries with Location,"Bin Mandatory" = true.

Template

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

Example:

    // [Example 01] Include only entries that were created by the current user.
    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS History", 'OnLookupOnHistory_OnSetFilterWarehouseEntry', '', true, true)]
    local procedure MyOnLookupOnHistory_OnSetFilterWarehouseEntry(var _RequestValues: Record "MOB NS Request Element"; var _WhseEntry: Record "Warehouse Entry")
    var
        MobSessionData: Codeunit "MOB SessionData";
    begin
        _WhseEntry.SetRange("User ID", MobSessionData.GetMobileUserID());
    end;





Version History

Version

Changes

MOB5.45Introduced
  • No labels