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 3 Next »

The List step allows the user to select a pre-defined value from a list. This could be anything from selecting which shipping agent to use during a picking routine to specifying a reason for moving or discarding an item.

 

 

AX

In AX the header is specified in the class Mob_GetReferenceData. The most commonly used method is addDefaultWarehouseElement(..) but there is multiple used..
Alternative use addHeaderConfigurationElement(..) with type #InputTypeList.

You must specify a datatable to use.
The valid values must either be specified by a list or as a reference to a datatable.
The datatable is also created in class Mob_GetReferenceData, look at addWarehouse2ReferenceData(..) - called from process(..), the method created a list with data - ready to be used in the controls in Mobile WMS.

Mob_GetReferenceData.addDefaultOrderFilter(..)
void addDefaultOrderFilter(XmlElement linesElement)
{
    // List with warehouses
    this.addDefaultWarehouseElement(linesElement, 1, #ReferenceDataTable_WarehouseFilterList);

    // Delivery date control
    this.addDefaultDeliveryDateElement(linesElement, 2);
}
  • No labels