OnLookupOnHistory_OnIncludeWarehouseEntry
Use this event to
Add filter conditions for Warehouse Entries that cannot be solved by OnSetFilter- event.
Description
This event affects locations with Location."Bin Mandatory" = true.
The entries can be excluded from the response by setting the parameter _IncludeInLookup to false.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS History", 'OnLookupOnHistory_OnIncludeWarehouseEntry', '', true, true)]
local procedure OnLookupOnHistory_OnIncludeWarehouseEntry(_WhseEntry: Record "Warehouse Entry"; var _IncludeInLookup: Boolean)
begin
end;
Example
// [Example]: Exclude from response if Quantity is more than 1.
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS History", 'OnLookupOnHistory_OnIncludeWarehouseEntry', '', true, true)]
local procedure MyOnLookupOnHistory_OnIncludeWarehouseEntry(_WhseEntry: Record "Warehouse Entry"; var _IncludeInLookup: Boolean)
begin
if _WhseEntry.Quantity > 1 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.46 | Introduced |