Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Use this event to

Excerpt

Change sort order for OrderList at the mobile device.


 

Description

You may use this event only to change sort order of the Prod. Order Lines orders (derived from Assembly Header's) displayed at the mobile device.  You 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 existing fields from the Line BaseOrderElement table (Record parameter on this event).

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

Sorting by custom fields

  • Change sorting key 
  • Change sorting direction
    • This requires two steps for custom fields:
    1. Use WIP Assembly OnGetProdOrderLinesOnGetAssemblyOrders_OnAfterSetFromProdOrderLineOnAfterSetFromAssemblyHeader with Set_Sorting1()-function as described above.
    2. Then use .Ascending()-function in this event.


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production ConsumptionMOB WMS Assembly", 'OnGetProdOrderLinesOnGetAssemblyOrders_OnAfterSetCurrentKey''', true, true)]
    local procedure OnGetProdOrderLines OnGetAssemblyOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
    end;


Example

    // [Example]  Change sorting to ascending item name (  Change sorting to 'Output' item name ("Assembly Header".Description = tag "HeaderValue2" in the Xml)
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production ConsumptionMOB WMS Assembly", 'OnGetProdOrderLinesOnGetAssemblyOrders_OnAfterSetCurrentKey''', true, true)]
    local procedure MyOnGetProdOrderLines MyOnGetAssemblyOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderElementView.SetCurrentKey(HeaderValue2);
        _BaseOrderElementView.Ascending(true);
    end;



Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orders" and label = "example" and label = "onaftersetcurrentkey"

  

Version History

VersionChanges
MOB5.2224Introduced