OnLookupOnLocateItem_OnIncludeItem
Use this event to
Exclude Warehouse Shipment from the "OnPostShipment"-response. (Location Not using Bins).
Description
This event affects locations with Location."Bin Mandatory" = false.
The item-number can be excluded from the response by setting the parameter _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::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]: Exclude from 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;
More examples
-
Case: Filter Receipts based on Comments — The user wants to filter Receipts on whether they have comments or not
-
How-to: Filter Order Lines — Examples of filtering Order Lines .
-
How-to: Filter Orders - Complex — Examples for including/excluding orders using complex per-document filtering
Version History
Version | Changes |
---|---|
MOB5.19 | Introduced |