Versions Compared

Key

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

Introduction

...

Description

Excerpt

With this feature the

...

registration data is continuously sent to the back-end, every time the user performs registration.

Normally, registrations are stored on the mobile device until user posts. 

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

...

account 


Communication with back-end

  • A request is issued after each registration

...

  • is completed
  • When a registration is modified a request with 'clearOrderLines' attribute is issued 

How to enable

Using Android Image Removed

Modify the application.cfg

...

Android


Modify the Mobile Configuration File, 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>

 

 

...

 

...




Windows Image Modified

...


 Modify the app.config file

...


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

 


Image Modified

...

 

...