Use this event to
Excerpt |
---|
Add filter conditions for Bin Content that cannot be solved by OnSetFilterOnSetFilter-event. |
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.
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Lookup", 'OnLookupOnLocateItem_OnIncludeBinContent', '', true, true)]
procedure OnLookupOnLocateItem_OnIncludeBinContent(_BinContent: Record "Bin Content"; var _IncludeInLookup: Boolean)
begin
end;
Example
// [Example]: Do not include in response if item is blocked
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Lookup", 'OnLookupOnLocateItem_OnIncludeBinContent', '', true, true)]
procedure MyOnLookupOnLocateItem_OnIncludeBinContent(_BinContent: Record "Bin Content"; var _IncludeInLookup: Boolean)
var
Item: Record Item;
begin
if Item.Get(_BinContent."Item No.") and 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"
...