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











Legacy contents


Unplanned function

In the previous chapters you have seen how the Mobile WMS application works with orders that are planned in Dynamics NAV. In many scenarios the mobile user also has the need to perform unplanned registrations if a certain event in the warehouse occurs. This could be that an item is damaged and the inventory needs to be updated. It could also be moving an item from one shelf to another.

The Mobile WMS application supports unplanned registrations through the ”Unplanned Item Registration” screen. This screen can be configured to handle many types of registrations. The typical work flow using the ”Unplanned Item Registration” screen is:

  1. Activate the feature
  2. Show the header values (configuration downloaded during login) [populate combo boxes with reference data]
  3. The user enters / selects the values and accepts them
  4. The values are sent to Dynamics NAV and it returns the additional registration steps that must be performed for the selected header values (e.g. if an item is lot tracked then the lot number must be registered)
  5. The user goes through the registrations steps and scans / enters the values
  6. The user posts the registration
  7. The registration is sent to Dynamics NAV where it is posted
  8. The screen is now ready for a new registration

   


GetRegistrationConfiguration

This message is sent to the Dynamics NAV when the user presses the button to accept the header values. The backend must return an XML that contains the additional registration steps to perform before the registration can be posted.

 

Example XML

<registrationCollectorConfiguration xmlns="http://schemas.taskletfactory.com/MDMF/Platform/Controls/RegistrationCollectorConfiguration.xsd">
    <steps>
        <add id="1"
             header="Enter LOT number"
             helpLabel=""
             inputType="Text"
             label="LOT No."
             length="20"
             name="LotNumber"/>
        <add id="2"
             header="Enter exp. date"
             helpLabel=""
             inputType="Date"
             label="Exp. date"
             name="ExpirationDate"
             minDate="2009-01-01"
             maxDate="2012-12-31"/>
        <add id="3"
             header="Enter quantity"
             helpLabel=""
             label ="Quantity"
             inputType="Integer"
             minValue="0"
             maxValue="150"
             name="QUantity" />
        <add id="4"
             header="Select Location"
             helpLabel=""
             label ="Location"
             inputType="List"
             listValues="Warehouse 1@Warehouse 2@Warehouse 3"
             listSeparator="@"
             name="Location" />
    </steps>
</registrationCollectorConfiguration>


XML schema explanation

In the <steps> element you can add the steps you need to complete the registration. The step attributes are explained here.

  • id [int]
    The id must be unique. It controls the order in which the steps are handled.
  • header [string]
    The text displayed in the
  • label [string]
    The text displayed before the input field
  • helpLabel [string]
    Optional help text displayed below the input field
  • inputType [string]
    The inputType determines the type of the input. At the moment there are four input types allowed:
    - Date
    - Integer
    - List

- Text

  • length [int]
    This attribute is only relevant for text inputs. The maximum length of the text is limited to this value.

 

  • listValues [string]

This attribute is only relevant for list inputs. The values which will populate the list. Separated by the separator character or string as described below.

 

  • listSeparator [string]

This attribute is only relevant for list inputs. The character or string that separates the list values. Defaults to ‘;’

  • minValue [int]
    This attribute is only relevant for integer inputs. The entered value cannot be lower than this value.
  • maxValue [int]
    This attribute is only relevant for integer inputs. The entered value cannot be higher than this value.
  • minDate [date]
    This attribute is only relevant for date inputs. The entered date cannot be before this date.
    The date must have this format: yyyy-MM-dd
  • maxDate [date]
    This attribute is only relevant for date inputs. The entered date cannot be after this date.
    The date must have this format: yyyy-MM-dd
  • name [string]
    This attribute sets the name of the element that will hold the registered value when the user posts the registration.

See also

Explore the Mobile WMS App

  • No labels