AX2012 Enterprise Portal Development Cookbook


Hi Friends,

Click on the below link to download AX2012 Enterprise Portal Development Cookbook.



AX2012 Enterprise Portal Development Book

(Or)


http://www.microsoft.com/en-us/download/details.aspx?id=30171

Creating Shared Project With All The AOT Elements in AX 2012

Creating Shared Project With All The AOT Elements in AX 2012


Project Name : DEV_CreateNewProject

This Project contains :

Class  Name                : DEV_CreateNewProject

Form Name                 : DEV_CreateNewProjectDlg

Menu Item => Action : DEV_CreateNewProject


Open the Action Menu , Run the Dev_CreateNewProject in the action menu .  you will find the screen like below.


You can give the name of the project which needs to be created. After providing the Project name, select the AOT elements which ever you need , and then  Press Ok  button , The new shared project will be created.

Go to Shared Project , you can find your newly created shared project their. 

You can find the XPO file  from the below link.


SharedProject_DEV_CreateNewProjectAX2012








How to make the Dialog field mandatory in Axapta reports


Dialog field Mandatory

In the below , i have marked in yellow shows you , how to make the dialog field mandatory.

public Object dialog(Object _dialog)
{
    int                                  i;
    DialogRunbase              dialog = _dialog;
    DialogField                   checkField;
    FormDateControl          control;
    ;
    dialog.addGroup("@SYS119346");
    fieldConversionDate = dialog.addFieldValue(typeid(InventStdCostConvEndDate),  conversionDate);
    control = fieldConversionDate.fieldControl();
    control.mandatory(true);
    control.allowEdit(false);

      return dialog;
}

Install and Configure Zpl Printer on D365 F&O

  Setup Zpl Printer On D365 F&O Posted on Recently, I have had an opportunity review the possibilities to print license plates within D3...