...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Excerpt |
---|
Change sort order for Orders on the mobile device. |
Description
You may use this event only to change sort order of the Orders displayed at the mobile device
...
. You cannot set any values from this event.
Consider when defining your custom sorting whether the Orders should still be organized by where-collected-from (default behavior) or if orders should now be sorted across sources.
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 OnGetPackingOrders_OnAfterSetFromWarehouseShipmentHeader with the
Set_Sorting1()-
function instead.
- Not possible from this event. Use OnGetPackingOrders_OnAfterSetFromWarehouseShipmentHeader with the
Change sorting direction
- This requires two steps for custom fields:
- Use OnGetPackingOrders_OnAfterSetFromWarehouseShipmentHeader with
Set_Sorting1()
-function as described above. - Then use
.Ascending()
-function in this event.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS LicensePlateContLookupPack", 'OnLookupOnLicensePlateContentOnGetPackingOrders_OnAddStepsOnAfterSetCurrentKey', '', false, false)]
local procedure OnLookupOnLicensePlateContent OnGetPackingOrders_OnAddStepsOnAfterSetCurrentKey(var _LookupResponseElementBaseOrderElementView: Record "MOB NS WhseInquery Element"; _LicensePlateContent: Record "MOB License Plate Content"; var _Steps: Record "MOB Steps BaseDataModel Element");
begin
end;
Filter by label (Content by label) showLabels false showSpace false sort title title More examples excerptType simple cql label = "OnLookupOnLicensePlateContentonaftersetcurrentkey" and label = "example"
Version History
Version | Changes |
---|---|
MOB5.42 | Introduced |
...