Description
Excerpt |
---|
With this feature the , registration data is continuously sent sent to the back-end, every time the user performs registration .(no posting needed) |
Normally, registrations are stored on the mobile device until the user posts.
With LiveUpdate, real-time data can become available to the back-end, before data is posted.
...
- Avoid selling specific Items which are already picked, but not yet posted by the warehouse worker
- Perform unplanned counts while respecting current picks/put-aways
Limitations (Important)
- Unposted data can be changed by the mobile user at any time
- No error is shown on mobile if the request fails ("fire and forget")
- Any logic that you create for LiveUpdate, must be tolerant of this fact
- Any logic that you create for LiveUpdate, must be tolerant of this fact
- "Variant Code" is not part of Mobile data.
- However, Order, Line, and Item tracking information is
Communication with back-end
...
- "operationMode" = OnlineWithLiveUpdate
- "liveUpdate" = RegisterRealtimeQuantity (Or Choose your own name)
Code Block | ||
---|---|---|
| ||
<!-- 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> |
...