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 2 Current »

Use this event to

Change sort order for Recordings on the mobile device.
 

Description

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


Sorting by existing fields

  • Change sorting key
    • Use .SetCurrentKey(field)-function with any of the existing fields from the Line table (Record parameter on this event).

  • Change sorting direction
    • Use .Ascending(true/false)-function. 

Sorting by custom fields


Template

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnAfterSetCurrentKey', '', true, true)]
    local procedure OnGetPhysInvtRecordings_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
    end;

 

Example

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnAfterSetCurrentKey', '', true, true)]
    local procedure MyOnGetPhysInvtRecordings_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderElementView.SetCurrentKey(BackendID);
        _BaseOrderElementView.Ascending(false);
    end;



More examples

 

Version History

VersionChanges
MOB5.19Introduced
  • No labels