web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

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  ...

Abdel Fatah Ahmed
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 ...

Abdel Fatah Ahmed
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=...

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

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

Abdel Fatah Ahmed
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...

Abdel Fatah Ahmed
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...

Abdel Fatah Ahmed
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*")    ...

Abdel Fatah Ahmed
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

Abdel Fatah Ahmed