Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Use this event to

Excerpt

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

...

OnLookupOnLocateItem_OnSetFilterBinContent-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 _

...

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_OnIncludeItem-event.

Template    

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"

...

MOB WMS Lookup", '

...

OnLookupOnLocateItem_

...

OnIncludeBinContent''', true, true)]
    procedure

...

 OnLookupOnLocateItem_

...

OnIncludeBinContent(_

...

BinContentRecord "

...

Bin Content"; var _

...

IncludeInLookupBoolean)
    begin
    end;


Example

    //

...

[Example]:

...

Exclude from response if item is blocked

    [EventSubscriber(ObjectType::CodeunitCodeunit::"

...

MOB WMS Lookup", '

...

OnLookupOnLocateItem_

...

OnIncludeBinContent''', true, true)]
    procedure

...

 MyOnLookupOnLocateItem_

...

OnIncludeBinContent(_

...

BinContentRecord "

...

Bin Content"; var _

...

IncludeInLookupBoolean)
    var

...

        ItemRecord

...

 Item;
    begin
        if

...

 Item.

...

Get(_

...

BinContent."

...

Item No.")

...

 and Item.Blocked then
            _

...

IncludeInLookup := false;
    end;


Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "lookup" and label = "locateitem" and label = "oninclude" and label = "example"


Version History

Version

Changes

MOB5.19Introduced