Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed filters from See Also

Use this event to

Excerpt

Exclude items Warehouse Shipment from the response for locations with no Bin Content"OnPostShipment"-response. (Location Not using Bins).

Description

This event is triggered after filters have been applied to the Bin Content. The event should be used only when it is not possible to use OnLookupOnLocateItem_OnSetFilterBinContent-event to solve if the Bin Content should be included in the response.The Bin Content affects locations with Location."Bin Mandatory" = false.
The item-number can be excluded from the response by setting the parameter _IncludeInBinContent IncludeInLookup to false.


If you wish to implement same conditions for locations with- and without BinContent you must subscribe to this event but also to:
OnLookupOnLocateItem_OnSetFilterBinContent  ...or...
OnLookupOnLocateItem_OnIncludeBinContent


Template    

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


Example

    //   [Example]:  Do not include in response if item is blockedExclude from 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 _IncludeItemIncludeInLookupBoolean)
    begin
        if _Item.Blocked then
            _IncludeItemIncludeInLookup := 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"

...