Monthly Archives: January 2011
Ways to debug query and relationship related issues in AX5 forms
Problem statement
I open a child form and it is not showing any data. How should I debug this?
Solution
These type of issues are mostly related with the query or with the relationships between the child and parent Table or Form records. I would like to add some point here, that may help in troubleshooting these sort of issues
1) Check the form query, you can do it this From Form –> setup –> Query tab
2)Check out the init(…) method, does it contain the args(…) setting, is it setting the query here.
Once you are able to figure out that it is the query issue, you can check the following steps
1) Check out the relations on the table
2)Check out the code in init(…) and the execute Query (…) method. Check for the query related code.
The best hardware and software Awards 2010
I just came across a very nice article regarding the top technologies of 2010 and I thought I should share the link here.
The some main highlights are
Among vendors, Microsoft led the field with four awards this year. Surprisingly under-represented is HP, although the company bested Dell and IBM in the Servers category . By comparison, Dell receives two of our Technology of the Year awards and could easily have won a few more. Android, I Phone led the mobile category. Windows phone 7 has much to cover.
Whole list of Awards
How to get system date and session date in Ax
How to get session date time using preferred time zone in x ++
| DateTimeUtil::date(DateTimeUtil::applyTimeZoneOffset(
DateTimeUtil::getSystemDateTime(), DateTimeUtil::getUserPreferredTimeZone()))) |
How to get system date in x++
| systemDateGet(); |

