16 Apr 2013

How to get Language in Dynamics AX

If you need to get the Client language use this method :

companyinfo::languageId();

If you need to get the current user language try this :

xInfo inf;
;

inf = new xInfo();
if( inf )
{

inf.language()
}
Or
info(infolog.language());

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...