Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

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)]
    localprocedure 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)]
    localprocedure MyOnLookupOnHistory_OnIncludeWarehouseEntry(_WhseEntry: Record"Warehouse Entry"; var _IncludeInLookup: Boolean)
    begin
        if _WhseEntry.Quantity >1then
            _IncludeInLookup:=false;
    end;


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




Version History

Version

Changes

MOB5.45Introduced