Use this event to
Excerpt |
---|
Change sort order for Recordings on the mobile device. |
...
Change sorting key
- Not possible from this event. Use OnGetPhysInvtRecordingOrders_OnAfterSetFrom...OnGetPhysInvtRecordings_OnAfterSetFromPhysInvtRecordHeader with the
Set_Sorting1()-
function instead.
- Not possible from this event. Use OnGetPhysInvtRecordingOrders_OnAfterSetFrom...OnGetPhysInvtRecordings_OnAfterSetFromPhysInvtRecordHeader with the
Change sorting direction
- This requires two steps for custom fields:
- Use OnGetPhysInvtRecordingOrders_OnAfterSetFrom...Use OnGetPhysInvtRecordings_OnAfterSetFromPhysInvtRecordHeader with
Set_Sorting1()
-function as described above. - Then use
.Ascending()
-function in this event.
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnAfterSetCurrentKey', '', true, true)]
localprocedure 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)]
localprocedure MyOnGetPhysInvtRecordings_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
begin
_BaseOrderElementView.SetCurrentKey(BackendID);
_BaseOrderElementView.Ascending(false);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...