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

Introduction

Normally, registrations are stored on the mobile device until posting time

With this feature the quantity is continuously sent to the back-end, 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.

Supported functional areas

  • Pick
  • Put-away

Supported data

  • Quantity
  • or custom function


Back-end (Business Central / NAV)

A request is issued after each registration.

  • The documenttype "RegisterRealtimeQuantity" will register realtime-quantities during Pick and Put-away.
    These are recorded in table "Mobile Realtime Reg. Qty."

  • The request is handled by Codeunit 6181379 "MOB WMS Whse. Inquiry"


How to enable

Using Android 

Modify the application.cfg


Add the following

  • "operationMode" 
  • "liveUpdate"


<!-- 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>

 

Using  Windows 

 

 Modify the app.config file

 

...<!-- Service for managing Pick Orders -->
 
<liveUpdate>
  <orderLineRegistrations enabled="true" requestDocumentName="RegisterRealtimeQuantity"/>
</liveUpdate>

 

 

 

  • No labels