web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
Collaboration request

I strongly believe that the blog content consists of two equally important parts – author's input (through the posts) and readers' input (through the comments). And so I decided to try to boost the second part a little bit and I need your help her...

Volodymyr Giginiak
Like (0)
New AX 2012 intrinsic functions

Two new intrinsic functions were added in AX 2012. One to reference datasources of queries and another one to reference form controls:Just want to remind the benefits of using intrinsic functions comparing to plain strings:If the referenced object...

Volodymyr Giginiak
Like (0)
More on CIL debugging

In the case you don't like debugging X++ code in Visual Studio there is a way to prevent code execution in CIL and to use the standard AX debugger instead.This can be done in the Tools->Options form.

Volodymyr Giginiak
Like (0)
Debugging managed code in AX 2012

Since a lot of X++ code is now executed in CLR there should be a possibility to debug it. The standard AX debugger cannot help here since it is capable of debugging interpreted code only. However, Visual Studio 2010 can do the job.There are few st...

Volodymyr Giginiak
Like (0)
Visual studio tools for AX 2012

Now it became really easy to develop managed components for AX. In order to do that you’ll need Visual Studio 2010 and Visual Studio Tools for AX 2012.The first tool to mention is, of course, Application Explorer. It contains elements from AOT (a...

Volodymyr Giginiak
Like (0)
Unit of Work

After the post about surrogate keys I was asked the following question:There is the following problem with using surrogate keys.A record gets RecId value at the moment it is inserted into the database. What if we are doing bulk insert of a journal...

Volodymyr Giginiak
Like (0)
Surrogate keys in AX 2012

Data modeling enhancements were prioritized really high in AX 2012. I already mentioned one earlier – table inheritance, but there are a lot of other important features about data modeling.One such feature is the support of surrogate keys. Surroga...

Volodymyr Giginiak
Like (0)
SQL temporary tables in AX 2012

In AX 2012 a new type of tables was introduced. In addition to Regular (permanent) tables and InMemory tables (known as temporary tables in previous versions of AX) we have got TempDB tables - SQL server temporary tables.I believe thit is the feat...

Volodymyr Giginiak