Versions Compared

Key

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

...

  • Online Validation limits the Offline capabilities of the system

See also

...

  • Lot number
  • Serial number
  • Quantity
  • From Bin

  • To Bin

  • Tote 

  • Customized collecter steps can be added

  • Expiration Date can also be validated if collected BEFORE another step, like Lot no.. (Enable the "includeCollectedValues" attribute).

 


How to enable using Android 

...

Code Block
languagexml
<service id="Pick" type="Order" orderType="Pick">
  <validation>
    <lotNumberValidation online="true" documentName="ValidateLotNumber" includeCollectedValues="true"/>
  </validation>
</service>

...

Step 2: Add Mobile Document Type

Make sure a document type exists and points to a Processing Codeunit.


Step 3: Write you validation code


Edit your processing codeunit.

If the validation succeeds return the OK message:

Code Block
MobBaseToolbox.CreateSimpleResponse(XMLResultDoc,'OK');

If the validation fails, create an error:

Code Block
ERROR(MobWmsLanguage.GetMessage('UNKNOWN_LOT'),LotNumber);


 

<lotNumberValidation online="true" documentName="" includeCollectedValues="true"/>