...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Add filter conditions for Bin Content that cannot be solved by OnSetFilter-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 OnSetFilter-event to solve if the Bin Content should be included in the response.
The Bin Content can be excluded from the response by setting the parameter _IncludeInBinContent to false.
Click to learn about Basic vs. Complex filtering.
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;
Version History
Version | Changes |
---|---|
MOB5.19 | Introduced |