Use this event to
Excerpt |
---|
Exclude items from the "LocateItem"-response for locations with no Bin Content. |
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 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.
The item-number can be excluded from the response by setting the parameter _IncludeInBinContent IncludeItem to false.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"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::Codeunit, Codeunit::"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) showLabels false showSpace false sort title title More examples excerptType simple cql label = "bc" and label = "lookup" and label = "locateitem" and label = "oninclude" and label = "example"
...