Tuesday, 26 April 2016

Import Export Model with ax 2012 R3
Models are logical group of elements like tables and classes. In AX 2012 elements can be group and store in the model file. Model files are easy to create, export and import and this can be uninstlled from system when not required.

Export an .axmodel file (Windows PowerShell)

  1. On the Start menu, point to All Programs, point to Administrative Tools, and then click Microsoft Dynamics AX Management Shell.
  2. At the Windows PowerShell command prompt, PS C:\>, type the following command, and then press ENTER.
 EXPORT Command Syntax:
      Export-AXModel –Model <name> -File <Filename.axmodel>
 Example:
    Export-AXModel -Model Ch_File -File C:\Test\Ch_File.axmodel

Import an .axmodel file (Windows PowerShell)

  1. On the Start menu, point to All Programs, point to Administrative Tools, and then click Microsoft Dynamics AX Management Shell.
  2. At the Windows PowerShell command prompt, PS C:\>, type the following command, and then press ENTER.

IMPORT Command Syntax:

Install-AXModel -File <Filename.axmodel> -Details

Example:

Install-AXModel -File C:\Test\Ch_File.axmodel -Details

Create a New Model 
Command Syntax:
New-AXModel -Model TestModel -Layer ISV
Links:

Friday, 22 April 2016

Overview

Number sequences are unique identifiers that can be associated with a master record so that they can be individually distinguished. They can be either formatted as alpha-numeric strings or simply as numbers.
Microsoft Dynamics AX 2012 provides an easy to implement framework to generate custom number sequences.

Scenario

As part of this tutorial, a custom number sequence will be generated for the Customer Groups setup form (Accounts receivable à Setup à Customers à Customer groups)

Steps

  1. First create a new Extended Data Type (EDT). Open AOT àData Dictionary à Extended Data Types
  2. Right Click on Extended Data Types and create a new EDT NumSeqDemoCustGroupNum of type String
  3. Set the properties as shown below

  4. Now go to AOT à Classes and open the NumberSeqModuleCustomer class by right clicking it and selecting View Code

  5. In the loadModule method, add the following code after the last line of code
  6. //customer group number
    //define the EDT
    datatype.parmDatatypeId(extendedTypeNum(NumSeqDemoCustGroupNum));
    //define its default propertiesdatatype.parmReferenceHelp(literalStr(“Unique number for customer group”));datatype.parmWizardIsContinuous(true);datatype.parmWizardIsManual(NoYes::No);datatype.parmWizardIsChangeDownAllowed(NoYes::No);datatype.parmWizardIsChangeUpAllowed(NoYes::No);datatype.parmWizardHighest(999999);datatype.parmSortField(27);
    //define its scope
    datatype.addParameterType(NumberSeqParameterType::DataArea, truefalse);this.create(datatype);

  7. Now, go to AOT à Jobs and create a new job loadNumSeqCustDemo
  8. Write the following code in the job and then run it
    static void loadNumSeqCustDemo(Args _args){
    //define the class variableNumberSeqModuleCustomer seqMod = new NumberSeqModuleCustomer();
    //load the number sequences that were not generatedseqMod.load();}

  9. Now, go to Organization administration à Common à Number sequences à Number sequences
  10. Click on Generate button in the New button group
  11. In the Setup number sequences wizard, Press Next
  12. In the Setup set different values for the number sequence like the format, highest value and lowest value
  13. Click Next
  14. In the last step, Click Finish to generate the number sequences
  15. The number sequence is generated and can be used on the Customer Groups form
  16. Open AOT à Data Dictionary à Tables à CustGroup
  17. Add a new String field and set the properties as follows
  18. Add the newly added field in the Overview field group
  19. Now go to Forms àCustGroup and restore the form. It will add the newly added field in the grid
  20. Write the following code on the Class declaration node
     NumberSeqFormHandler numberSeqFormHandler;

  21. Create a new method on the form and write the following code
    NumberSeqFormHandler numberSeqFormHandler(){
    if (!numberSeqFormHandler){
    //create a reference of number sequence form handler class specifying the         EDT, Data source name and the field of the table
    numberSeqFormHandler =NumberSeqFormHandler::newForm(NumberSeqReference::findReference(extendedtypenum(NumSeqDemoCustGroupNum)).NumberSequenceId, element,CustGroup_DS,fieldnum(CustGroup,CustGroupNumber));}return numberSeqFormHandler;
    }

  22. Override the close method of the form and write the following code
    public void close(){
    if (numberSeqFormHandler)
    {numberSeqFormHandler.formMethodClose();}
    super();}

  23. Override the create method on the CustGroup data source and add the following code
    public void create(boolean _append = false){
    element.numberSeqFormHandler().formMethodDataSourceCreatePre();
    super(_append);
    element.numberSeqFormHandler().formMethodDataSourceCreate(true);}

  24. Override the write method on the CustGroup data source and add the following code
    public void write(){
    super();
    element.numberSeqFormHandler().formMethodDataSourceWrite();}

  25. Override the validateWrite method on the CustGroup data source and add the following code
    public boolean validateWrite(){
    boolean ret;
    ret = super();
    ret = element.numberSeqFormHandler().formMethodDataSourceValidateWrite(ret) && ret;
    return ret;}

  26. Override the delete method on the CustGroup data source and add the following code
    public
    void delete()
    {
    element.numberSeqFormHandler().formMethodDataSourceDelete();
    super();}

  27. Override the linkActive method on the CustGroup data source and add the following code
    public
    void linkActive()
    {
    element.numberSeqFormHandler().formMethodDataSourceLinkActive();
    super();}

  28. Now go to Accounts receivable à Setup à Customers à Customer groups
  29. Create a new record. The number sequence is generated according to the format defined as shown below
 SEPTEMBER 24, 2014

    Saving AX 2009 Morphx Report in PDF Format:


    static void PrinttoPDF(Args _args)
    {
      PurchFormLetter purchFormLetterp;
      PrintJobSettings printJobSettings;
      VendInvoiceJour  vendInvoiceJour;
      PrintFormat PrintFormat;
      Args args = new Args();
      #File

        purchFormLetterp = PurchFormLetter::construct(DocumentStatus::Invoice,false);
        printJobSettings = new PrintJobSettings();
        printJobSettings.setTarget(Printmedium::File);
        //printJobSettings.getPrinter();
       // printJobSettings.deviceName("");
       // printJobSettings.unpackPrinterSettings(PurchFormLetter::getPrinterSettingsFormletter(DocumentStatus::Invoice,PrintSetupOriginalCopy::Original));
       // printJobSettings.preferredTarget(PrintMedium::Printer);
        printJobSettings.format(PrintFormat::PDF);
        printJobSettings.fileName( @'c:\TEMP\myfile2.pdf');
        printJobSettings.warnIfFileExists(false);

        purchFormLetterp.updatePrinterSettingsFormLetter(printJobSettings.packPrintJobSettings());

        select vendInvoiceJour where vendInvoiceJour.Purchid == 'PO/15-16/00443';
        vendInvoiceJour.printJournal(purchFormLetterp);
       // args.record(vendInvoiceJour);
      //  args.caller(purchFormLetterp);

      // new MenuFunction(menuitemoutputstr(Purchinvoicecopy), MenuItemType::Output).run(args);


    }

    Code to get the printout directly from a morphx report 2009:

    //directly to printer
    static void ReporttoPrint(Args _args)
    {
        Args                args;
        ReportRun           rr;
        Report              rb;
        PrintJobSettings    pjs;
        VendInvoicejour     record;
        ;

        select record where record.Purchid == 'PO/15-16/00421';

        args = new Args("Purchinvoice");
        args.record(record);
        args.parmEnum(PrintCopyOriginal::OriginalPrint);

        rr = new ReportRun(args,'');
        rr.suppressReportIsEmptyMessage(true);
        rr.query().interactive(false);

        rb = rr.report();
        rb.interactive(true);

        pjs = rr.printJobSettings();
        pjs.fileName(strfmt(@'c:\TEMP\myfile2.pdf', record.purchid));
        pjs.fitToPage(true);

        pjs.virtualPageHeight(-1);
        pjs.format(PrintFormat::PDF);
        pjs.deviceName('Canon iR2220/iR3320 PCL5e');
        pjs.setTarget(PrintMedium::Printer);
        pjs.viewerType(ReportOutputUserType::PDF);
        pjs.lockDestinationProperties(true);
        rr.prompt();
        rr.init();
        rr.run();


    }