Versions Compared

Key

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

Use this event to

...

You may use this event only to change sort order of the Consumption Lines displayed at the mobile device. You cannot set any values from this event.

...


Sorting by existing fields

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdConsumptionLines_OnAfterSetCurrentKey''', true, true)]
    local procedure OnGetProdConsumptionLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
    begin
    end;

Example

    // [Example]  Change sorting to Unit Of Measure, then Item Number
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdConsumptionLines_OnAfterSetCurrentKey''', true, true)]
    local procedure MyOnGetProdConsumptionLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderLineElementView.SetCurrentKey(UnitOfMeasure, ItemNumber);
        _BaseOrderLineElementView.Ascending(true);
    end;



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

  

Version History

VersionChanges
MOB5.22Introduced

...