Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Use this event to

TODO

Description

TODO

Template

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

Example

    // [Example]  Change sorting to ascending item name (= tag "HeaderValue2" in the Xml)
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnAfterSetCurrentKey''', true, true)]
    local procedure MyOnGetProdOrderLines_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderElementView.SetCurrentKey(HeaderValue2);
        _BaseOrderElementView.Ascending(true);
    end;



More examples

There are no items with the selected labels at this time.

  

Version History

VersionChanges
MOB5.22Introduced
  • No labels