Use this event to
Excerpt |
---|
Exclude items from the "LocateItem"-response for locations where Location.with no "Bin Mandatory" is not set. |
Description
This event works is only for affects locations with no Bin Content. Location."Bin Mandatory" = false.
The item-number can be excluded from the response by setting the parameter _IncludeInLookup to false.
...
[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 _IncludeInLookup: 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 _IncludeInLookup: Boolean)
begin
if _Item.Blocked then
_IncludeInLookup := 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"
...