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 Warehouse Shipment from the "OnPostShipment"-response. (Location Not using Bins).

...

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


Example

    // [Example]: Exclude 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 _IncludeInLookup: Boolean)
    begin
        if _Item.Blocked then
            _IncludeInLookup := 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"

...