Our support engineers have assembled the top recommended solutions for you.
Microsoft Dynamics AX 2012CRM Connector in Microsoft Dynamics AX 2012Financials Management in Microsoft Dynamics AX 2012Upgrading to Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2009
Application Object Server (AOS)
Enterprise Portal and Role Centers
Inventory Costing in Microsoft Dynamics AX 2009
Invoice Settlements/Discounts/Reversals
SSRS and SSAS Integration
Workflow
You need to turn on the tracing in the config file before you will see anything in either the database or via trace output. To do this go the POS.exe.config file and look for the following section:
<system.diagnostics>
<sources>
<!-- this registers the listener with traces from a specific source -->
<source name="RetailNetTracer" switchValue="All">
You want to change the switch value from Warning to All. Now it will output trace information to a tool like DebugView. The other thing to realise is that because the POS is .NET 4.0 the debug information is outputted a little differently. If you are debugging in Visual Studio the trace information will only get returned to the attached debugger. A tool such as DebugView won't see the trace output unless you are running the POS with no debugger attached.
Hopefully this helps...
It used to have a log level and would always log to the database first. If that failed it would write to the file system notifying you of what it couldn't write to the database. Now in R2 it always attempts to write to the database and always sends a trace message to all trace listeners. If the database write fails you will still get the trace message. In fact, even if you have the Audit disabled you will still see a trace message like so:
Auditing disabled in functionality profile. Entry for source '{0}' and value '{1}' not written
I use DebugView to watch the trace messages as it easy to filter and highlight the source that you are interested in. You can download DebugView from http://technet.microsoft.com/en-au/sysinternals/bb896647.aspx.
Simon thanks for your reply but i didn't understand you.
i made Auditing disabled in functionality profile but retail log table doesn't log anything just log login and off from POS
Please also note that if you are using the AX2012R2 VPC, and wish to use an existing POS functionality profile, the AUDITENABLED field in the RETAILFUNCTIONALITYPROFILE table = 2. This is an invalid value and was likely left over from when this field was an option field in R1. If you uncheck, the Audit field and then recheck it, the value will reset to "1". Then sync your data down and (provided you have updated your config file as well) the logging will commence.