Skip to main content

Notifications

Community blogs

Featured

Latest blog posts

View all
Like ( 0 )
Select Statement CrossCompany using X++

 this example to return the first only vendor name by the vendor account from all companies (CrossCompany) :  select firstonly crossCompany  _vendtable                    join  ...

Like ( 0 )
Update Wrong item Name Using Excel File in AX 2012

if you are facing wrong item name and you have  a lot of them you can use excel file with the wrong and the correct Item Name then you can use the following code to help with the update process : Excel sheet format is : item code wrong item ...

Like ( 0 )
Insert method using unit of work pattern in ax 2012

public static server  void insertintocusttableusingUOWClass(){     UnitOfWork uow = new UnitOfWork();    CustTable           custTable;      ;    custTable.AccountNum=...

Like ( 0 )
Delete Using Unit of Work Pattern in AX 2012

public static server  void insertintocusttableusingUOWClass(){     UnitOfWork uow = new UnitOfWork();    CustTable           custTable;       ;     select * ...

Like ( 0 )
How To control the decimal point in Real values in AX ?

To control the decimal point in real value do the following : 1- right click on the real field and choose properties 2- go to NoOfDecimals property and put any number you want for example (1 or 2 or 3) This means the numbers after the decimal...

Like ( 0 )
Like Operator in X++ AX 2009

we can use it for strings in MS Dynamics AX like this :static void LikeTest(){    str str;    ;    str="expiry";    if(str like "exp*")    &nb...

Like ( 0 )
X++ Like Operator

we can use it for strings in MS Dynamics AX like this : static void LikeTest(){     str str;    ;    str="expiry";    if(str like "exp*")    ...

Like ( 0 )
How to check caller form in ax 2009 using X++?

   To check the caller form name you can use this code. if( element.args().parm()==formstr(FormName))    {       //<Code>    } Note: Form Name Must be  Correct Name