<!---UPDATE 2/14/2013--->
For CDE-RTS in AX for Retail R2 see below for logging. It's changed quite a bit from just using the retail log in the store DB http://blogs.msdn.com/b/axsupport/archive/2012/12/31/ax-for-retail-2012-r2-troubleshooting-the-real-time-service.aspx
<!---END UPDATE--->
While there can be a few first steps to debugging an issue depending on the scenario, they may ultimately lead to needing to look at:
- The EventViewer on the RTS server used for the call (probably an AOS server)
- The RetailLog in the POS store DB who sent the call
- Set the RTS log level for the POS is at the highest possible level: 'Trace'. This is a setting in the Functionality profile, which is assigned to the store. Run the below SQL statement against the POS database to set this. The LogLevel field is a base enum and 'Trace' is the zero value. UPDATE RETAILFUNCTIONALITYPROFILE SET LOGLEVEL = 0
- Clear the RetailLog table to capture a fresh log of the error: DELETE FROM RETAILLOG
- Launch the POS application and go through the order process to the selected action of interest. Once complete, run the following: SELECT * FROM RETAILLOG
Here is some more information around the Retail POS logging options
http://blogs.msdn.com/b/axsupport/archive/2012/08/07/ax-2012-retail-how-to-enable-tracing-in-ax-2012-retail.aspx
No comments:
Post a Comment