Tuesday, January 12, 2010

Microsoft Dynamics AX 2009 Technical Library

http://technet.microsoft.com/en-us/library/dd309624.aspx

Servicing Microsoft Dynamics AX 2009

https://mbs.microsoft.com/customersource/support/documentation/whitepapers/AX2009Patching

Friday, January 8, 2010

Reperire il campo chiave di una Tabella

DictTable DictTable;

DictTable = New DictTable(TableNum(Nome_Tabella));
print fieldid2name( dictTable.id(), dictTable.primaryKeyField());
pause;

Thursday, January 7, 2010

Form - Aggiunta campi dalla form UserSetup

Di default da impostazioni di una Form se si preme il tasto "Aggiunta Campi" AX permette di aggiungere SOLO i campi visualizzati nella form stessa.
Per poter aggiungere un campo non previsto, ma presente in tabella, bisogna a livello di proprietà del campo del Datasource andare a settare la proprietà "AllowAdd" a YES.

AX ASCII Functions

Converts a character in a string to the ASCII value of the character you have to use :

int char2Num(str text, int position)

Instead, converts an integer to the corresponding ASCII character you have to use :

str num2Char(int figure)

see also http://msdn.microsoft.com/en-us/library/aa653761.aspx

Tuesday, January 5, 2010

SQL Server 2008 - Key-Range Locking

http://msdn.microsoft.com/en-us/library/ms191272.aspx