...
Normally, registrations are stored on the mobile device until posting time
With LiveUpdate this feature the quanity quantity is continiously sent continuously sent to the back-end. (Or when Networks access is re-established)
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.
Supported functional areas
- Pick
- Put-away
Supported data
- Quantity
...
The Backend (NAV)
A request to NAV to register realtime-quantities while picking / putting-away is sent and recorded in table "Mobile Realtime Reg. Qty."
How to enable
Using Android
TODO
...
Modify the application.cfg
Note the <liveUpdate> tag.
Code Block | ||
---|---|---|
| ||
<!-- SERVICES -->
<services>
...
<service id="Pick" type="Order" orderType="Pick">
<requests>
<getOrders>GetPickOrders</getOrders>
<getOrderLines>GetPickOrderLines</getOrderLines>
<postOrder>PostPickOrder</postOrder>
<liveUpdate>RegisterRealtimeQuantity</liveUpdate>
</requests>
</service> |
Using Windows
Modify the app.config file
Code Block | ||
---|---|---|
| ||
...<!-- Service for managing Pick Orders -->
<liveUpdate>
<orderLineRegistrations enabled="true" requestDocumentName="RegisterRealtimeQuantity"/>
</liveUpdate> |
This will send a request to NAV to register realtime-quantities while picking / putting-away putting a record in table 6181373 TF Mobile Realtime Reg. Qty.
...