AxAssist - MS Dynamics AX Development Tool

Main Features Downloads Purchase Support  

Downloads

DownloadsInstallation

Installation



  1. Download and execute installation file (For example, AxAssist1.14.0_for_DAX30_setup.exe).
  2. Import AxAssist.xpo (Axapta 3.0) or PrivateProject_AxAssist.xpo (DAX4.0 or DAX2009) file to your Microsoft Dynamics AX installation (you can find it in installation folder).
  3. Change class EditorScripts as shown below:

    Microsoft Dynamics Axapta 3.0:

    Add this code after variable definition section in Classes->EditorScripts->ShowScript() method:

    // > AxAssist, 20.02.2011
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(e);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return;
      }
    // < AxAssist, 20.02.2011
    Microsoft Dynamics AX 4.0:

    Add this code after variable definition section in Classes->EditorScripts->getApplicableScripts() method:
    // > AxAssist, 20.02.2011
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(e);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return connull();
      }
    // < AxAssist, 20.02.2011
    Microsoft Dynamics AX 2009:

    Add this code after variable definition section in Classes->EditorScripts->getApplicableScripts() method:
    // > AxAssist, 20.02.2011
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(_editor);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return connull();
      }
    // < AxAssist, 20.02.2011
  4. Compile EditorScripts class.
  5. Compile AxAssist project.
  6. Open form DEV_AxAssistForm (it will disappear after opening).
  7. If you would like automatically run AxAssist after Microsoft Dynamics AX startup please read this article.


© 2011 - axassist.com