Monday, August 30, 2010

Change Font Infolog Message

If you want to change font or other properties to Infolog message Windows you have to modify the class Info method viewRefresh.

Tuesday, August 17, 2010

Impact Analysis feature for Dynamics AX 2009 (IAT - Upgrade Tool)

Patch Impact analysis, is the process of understanding a change that is being introduced into a system, determining the consequences of the change on related subsystems, and creating possible mitigation plans to reduce risk.

http://go.microsoft.com/fwlink/?LinkId=160115

Google Maps Query String Parameters

http://www.querystring.org/google-maps/google-maps-query-string-parameters

Friday, July 2, 2010

Overwrite System Field in a Table

The code below work ony at Server Side !


 
Static Server void Run()
{
    CustTable   custTable;
    ;


    ttsbegin;

    new OverwriteSystemFieldsPermission().assert();

    custTable.clear();
    custTable.AccountNum = "TEST";
    custTable.overwriteSystemfields(true);
    custTable.(fieldNum(custTable, CreatedDateTime)) = DateTimeUtil::newDateTime(01\11\2013,0);
    custTable.insert();
    
    CodeAccessPermission::revertAssert();
   
    ttscommit;
}



Enjoy !