...
Order is posted
After the request for "Post all registrations" is issued
An additional request is issued to "Delete all registrations" for the entire order
Registrations are continuously cleared from the back-end this way.
How to enable
...
Android
Step 1
Modify the Mobile Configuration File, add
Note the the following:
- "operationMode" = OnlineWithLiveUpdate
- "liveUpdate" = RegisterRealtimeQuantity (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> |
Step 2
...
- Make sure to add a "Mobile Document Type"
- with the name of your registration type (i.e. 'RegisterRealtimeQuantity' in the example)
- that is attached to the correct "Mobile Group"'s
Windows
Modify the app.config file
...
language | xml |
---|
...
Business Central implementation
The “Realtime” registration data is stored in a separate table “MOB Realtime Reg Qty.” as they are received. From here the data for all mobile devices can be accessed from your customization.
...