Versions Compared

Key

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

...

Use the page "Mobile Document Queue List" to view the XML sent from and to the mobile app.

...

Note that the field "RegistrationCreated" is the date that the registration was created on the mobile device.


Real Time Quantity - (Currently Picked/Put-Away quantity)

You can use this feature to view the quantities being Taken/Placed in real time, before posting.

This is available in the table "MOB Realtime Reg Qty."

 

...

Telemetry "Application Insights

...

"

Telemetry is logged using Application Insights for all request requests sent from a mobile device to Business CentralBC.

The logged data does not contain details of the content of each request, but logs the document type, duration and similar generic data. More specific data, like the customer no. and the number of lines are not loggedOnly generic data like the Mobile Document Types (6/10), Processing Time, and are logged. You will not find Request XML, order, nor customer data in telemetry.


The data can be queried using KQL and for example show KQ.

For example this query shows the number of PostPickOrder requests that has been completed, per hour: 

Code Block
languagesql
collapsetrue
traces
| where customDimensions.eventId startswith "ALMOB2000"
| where customDimensions.alEventName == "PostPickOrder"
| where customDimensions.aadTenantId == "..."
| where customDimensions.alCompany contains "..."
| summarize count() by bin(timestamp, 1h)

Links with additional information:

...