Versions Compared

Key

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

...

With this feature the quantity is continuously sent to the back-end. (Or when Networks access is re-established), every time the user performs registration.

 

This could enable you to perform Unplanned counts while taking unposted picks/put-aways into account by modifying the code in the "TF Mobile WMS Adhoc Registr.".PostUnplannedCountRegistration function so it takes the Realtime Reg. Qty. into account.

...

  • Pick
  • Put-away

Supported data

  • Quantity

The Backend (NAV)

...

  • or custom function

Back-end

A request is issued after each registration.

The documenttype "RegisterRealtimeQuantity" will register realtime-quantities while picking / putting-away is sent and during Pick and Put-away.
These are recorded in table "Mobile Realtime Reg. Qty."


How to enable

Using Android 

Modify the application.cfg


Note the  <liveUpdate> tag.Add the following

  • "operationMode" 
  • "liveUpdate"




Code Block
languagexml
<!-- SERVICES -->


<services>
...
 
<service id="Pick" type="Order" orderType="Pick" operationMode="OnlineWithLiveUpdate">
  <requests>
    <getOrders>GetPickOrders</getOrders>
    <getOrderLines>GetPickOrderLines</getOrderLines>
    <postOrder>PostPickOrder</postOrder>
    <liveUpdate>RegisterRealtimeQuantity</liveUpdate>
  </requests>
</service>

...