Wednesday, March 4, 2015

Displaying INR symbol in Ax 2009

In  Currency table copy and paste INR(₹)


and write a display method in report.

display CurrencySymbol INR()
{
       ;
   return Currency::find(CustInvoiceJour.CurrencyCode).Symbol;

}

Enable/Disable form control based on multiple rows select

 class PurchTableFormEventHandler {      [FormDataSourceEventHandler(formDataSourceStr(PurchTable, PurchTable), FormDataSourceEventType::Act...