Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

...

This event works is only for locations with no Bin Content.  If you wish to implement same conditions for locations with- and without BinContent you must subscribe to this event but also to the -event. OnLookupOnLocateItem_OnSetFilterBinContent or 

The item-number can be excluded from the response by setting the parameter _IncludeItem to false.

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnLocateItem_OnIncludeItem''', true, true)]
    procedure OnLookupOnLocateItem_OnIncludeItem(_Location: Record Location; _Item: Record Item; _ItemVariant: Record "Item Variant"; var _IncludeItem: Boolean)
    begin
    end;


Example

    // [Example]: Do not include in response if item is blocked

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnLocateItem_OnIncludeItem''', true, true)]
    procedure MyOnLookupOnLocateItem_OnIncludeItem(_Location: Record Location; _Item: Record Item; _ItemVariant: Record "Item Variant"; var _IncludeItem: Boolean)
    begin
        if _Item.Blocked then
            _IncludeItem := false;
    end;


Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "lookup" and label = "locateitem" and label = "oninclude" and label = "example"

...