Posts

Showing posts from October, 2018
Image
Parallel compilation in AX 2012 R3 step 1 : Find Axbuild file on following path C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAXR3\bin Step 2 : change directory note: every Time use CD programfiles or CD microsoft dynamics AX   CD Step 3 : Run Following Command Step 4 : It will generate the log file. Check that log file and find the errors.
Image
Get default financial dimension values through X++ code Hi, There are many areas in AX where  "Default Financial Dimension"  is used.In many cases we have to show the default financial dimension and its values in either forms or reports,so the key thing is that how do we get the default financial dimension and its value associated to a particular entity though X++ code.Here is the code snippet that will meet your needs. I am using  Project  table with which Financial Dimensions have been attached already. Code Example 1 ProjTable                                       ProjTable; DimensionAttributeValueSet           DimensionAttributeValueSet; DimensionAttributeValueSetItem    DimensionAttributeValueSetItem; DimensionAttributeValue                DimensionAt...
Image
How to use "Like" operator in the QueryBuildRange.Value To make something as the "LIKE" operator in a query,  you should just assign a value to the queryRange including a wildcard. The query framework will then change the statement into a LIKE statement. If the value does not contain a wildchard the query framework will change the statement to ==. .here qbr.valu("!P*,C*"); will come letter not start with C,P letters if we use qbr.value("P*,C*") will get particular values start with P,c letter.. Using NOT LIKE in X++ select statements and query ranges source: http://basicax.blogspot.com/2014/08/using-not-like-in-x-select-statements.html