OnGetPhysInvtRecordingLines_OnAfterSetCurrentKey
Use this event to
Change sort order for Order Lines on the mobile device.
Description
You may use this event only to change the sort order of the Order Lines 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).
- Use
Change sorting direction
- Use
.Ascending(true/false)
-function.
- Use
Sorting by custom fields
Change sorting key
- Not possible from this event. Use OnGetPhysInvtRecordingLines_OnAfterSetFromPhysInvtRecordLine with the
Set_Sorting1()-
function instead.
- Not possible from this event. Use OnGetPhysInvtRecordingLines_OnAfterSetFromPhysInvtRecordLine with the
Change sorting direction
- This requires two steps for custom fields:
- Use OnGetPhysInvtRecordingLines_OnAfterSetFromPhysInvtRecordLine with
Set_Sorting1()
-function as described above. - Then use
.Ascending()
-function in this event.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordingLines_OnAfterSetCurrentKey', '', true, true)]
local procedure OnGetPhysInvtRecordingLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordingLines_OnAfterSetCurrentKey', '', true, true)]
local procedure MyOnGetPhysInvtRecordingLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
begin
_BaseOrderLineElementView.SetCurrentKey(ItemNumber);
_BaseOrderLineElementView.Ascending(false);
end;
More examples
-
How-to: Sorting of Order Lines — Examples of sorting Order Lines.
Version History
Version | Changes |
---|---|
MOB5.19 | Introduced |