Tuesday, August 21, 2012

AX 2012 Database Temp Table

From MSDN:

...One type of temporary table is a TempDB table. They are called TempDB tables since the TableType property value is TempDB (TableType::TempDB). The TableType property value can be set from AOT > Data Dictionary > Tables > MyTempDBTable > Properties > TableType.

All types of temporary tables are automatically dropped by the system when the table variable in X++ goes out of scope. A TempDB table is not dropped when you set its record buffer variable to null.

TempDB tables are a different type of temporary table than InMemory tables. For more information, see Temporary InMemory Tables.

For more info:

AX 2012 AIF

Some quotes from technet:

"The AIF framework has been updated to enable developers to expose X++ business logic as WCF services. ASMX Web services have been replaced with WCF services enabling new functionality such as message encryption."

AX2012 Startup options

The startup options are described here:
http://technet.microsoft.com/en-us/library/aa569653.aspx

Example: If you want to make a shortcut that reads a configuration file (AX2012_VAR.axc) and starts the development environment:

D:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin\Ax32.exe -development "D:\Program Files (x86)\Microsoft Dynamics AX\60\config\AX2012_VAR.axc"