Use this event to
...
The Bin Content can be excluded from the response by setting the parameter _IncludeInBinContent to false.
If you wish to implement same conditions for locations with- and without BinContent you must subscribe to this event but also to:
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Lookup", 'OnLookupOnLocateItem_OnIncludeBinContent', '', true, true)]
procedure OnLookupOnLocateItem_OnIncludeBinContent(_BinContent: Record "Bin Content"; var _IncludeBinContent: 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 _IncludeBinContent: Boolean)
var
Item: Record Item;
begin
if Item.Get(_BinContent."Item No.") and Item.Blocked then
_IncludeBinContent := 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"
...