Skip to main content

AX 2012 - Import Free Text Invoices - Header and lines - from one excel file

I got a requirement to upload free text invoices into AX 2012 from one excel file. All the header and lines information was in one excel sheet so I had to came up with different solution than the import process described on many blogs or can be done through built in AX classes. However, those import process work perfectly if you have data into seperate files or only for one record.

Here is the  job which I used to import free text invoices into AX 2012. In this job I used a table CustomerInvoices (new created table) which contains the data of all excel file. You can easily find out how to import data from excel then instead of using this table you can directly use the excel rows to get the data and insert into Free Text Invoice tables.

static void CreateFTInvoicesFromTable(Args _args)
{
    CustInvoiceTable    custInvoiceTable;
    CustInvoiceLine     custInvoiceLine;
    CustTable           custTable;
    CustomerInvoices    customerInvoices; // Customized table
    Map                 customerFTI = new Map(Types::String, Types::String);
    Set                 failedCustAccount = new Set(Types::String);
    MapEnumerator       mapEnum;
    SetEnumerator       setEnum;
    LineNum             lineNum;

    ttsBegin;

    while select customerInvoices
            order by customerInvoices.AccountNum
    {
        if (!customerFTI.exists(customerInvoices.AccountNum) && !failedCustAccount.in(customerInvoices.AccountNum))
        {
            select custTable
                where custTable.AccountNum == customerInvoices.AccountNum;

            custInvoiceTable.clear();

            if (custTable.RecId != 0)
            {
                custInvoiceTable.OrderAccount = custTable.AccountNum;
                custInvoiceTable.modifiedField(fieldNum(CustInvoiceTable, OrderAccount));
                custInvoiceTable.InvoiceId = customerInvoices.InvoiceId;
                custInvoiceTable.insert();
                lineNum = 0;
                customerFTI.insert(customerInvoices.AccountNum, custInvoiceTable.InvoiceId);
            }
            else
            {
                if (!failedCustAccount.in(customerInvoices.AccountNum))
                {
                    failedCustAccount.add(customerInvoices.AccountNum);
                }
            }
        }

        if (custInvoiceTable.RecId != 0)
        {
            custInvoiceLine.initFromCustInvoiceTable(custInvoiceTable);
            custInvoiceLine.LedgerDimension = customerInvoices.LedgerDimension;
            custInvoiceLine.Description     = customerInvoices.Description;
            custInvoiceLine.TaxGroup        = customerInvoices.TaxGroup;
            custInvoiceLine.TaxItemGroup    = customerInvoices.TaxItemGroup;
            custInvoiceLine.Quantity        = customerInvoices.Quantity;
            custInvoiceLine.UnitPrice       = customerInvoices.UnitPrice;
            custInvoiceLine.AmountCur       = customerInvoices.Quantity * customerInvoices.UnitPrice;
            custInvoiceLine.ParentRecId     = custInvoiceTable.RecId;         

            lineNum += 1;
            custInvoiceLine.LineNum = lineNum;
            custInvoiceLine.insert();
        }
    }

    ttsCommit;

    mapEnum = customerFTI.getEnumerator();

    info(strFmt('Following Free Text Invoices are successfully created.'));

    while (mapEnum.moveNext())
    {
        info(strFmt('Customer Account : %1 , Invoice Id : %2', mapEnum.currentKey(), mapEnum.currentValue()));
    }

    if (!failedCustAccount.empty())
    {
        info(strFmt('Following Customer Accounts are not valid.'));

        setEnum = failedCustAccount.getEnumerator();
        while (setEnum.moveNext())
        {
            info(strFmt('Customer Account: %1', setEnum.current()));
        }
    }
}

Comments

  1. Hi Faisal,

    Why are you using customerInvoices Table and what Customization have you done on it?

    From whee you are importing the Excel sheet?

    Could you please explain clearly

    ReplyDelete
  2. I will recommend anyone looking for Business loan to Le_Meridian they helped me with Four Million USD loan to startup my Quilting business and it's was fast When obtaining a loan from them it was surprising at how easy they were to work with. They can finance up to the amount of $500,000.000.00 (Five Hundred Million Dollars) in any region of the world as long as there 1.9% ROI can be guaranteed on the projects.The process was fast and secure. It was definitely a positive experience.Avoid scammers on here and contact Le_Meridian Funding Service On. lfdsloans@lemeridianfds.com / lfdsloans@outlook.com. WhatsApp...+ 19893943740. if you looking for business loan.

    ReplyDelete

Post a Comment

I will appreciate your comments !

Popular posts from this blog

The Dual Write implementation - Part 1 - Understand and Setup

What is Dual-write? Tightly couples – complete at one transaction level Near real time Bi-directional Master data and business documents – Customer records you are creating and modifying and at this document we are talking about sales orders or quotes and invoice. Master data could be reference data e.g. customer groups and tax information Why Dual-write and why not Data Integrator? Data Integrator is Manual or Scheduled One directional Now, Let's deep dive and understand what is required for Dual-write setup and from where to start. First thing first, check you have access to https://make.powerapps.com/ Choose right environment of CDS (CE) Make sure you have access to the environment too, click on gear icon and Admin Center  Look for required environment and Open it, you must have access as going forward you are going to configure dual write steps in the environment user the same user you are logged in now. Now, go back to power platform admin center and...

D365FO: Entity cannot be deleted while dependent Entities for a processing group exist. Delete dependent Entities for a processing group and try again.

Scenario: There are times when you want to delete an entity from target entity list and when you do so, you face an error message which does not tell you where exactly the entity has been used.  "Entity cannot be deleted while dependent Entities for the processing group exist. Delete dependent Entities for a processing group and try again. " Solution: Browse the environment by appending this part  /?mi=SysTableBrowser&TableName=DMFDefinitionGroupEntity&cmp=USMF   at the end.  For example; if the environment URL is  https://daxture.sandbox.operations.dynamics.com then the complete URL will be https://daxture.sandbox.operations.dynamics.com/?mi=SysTableBrowser&TableName=DMFDefinitionGroupEntity&cmp=USMF Filter for Entity and it will give you the DefinitionGroup where the entity has been added or used in data management import/export projects. Get the DefinitionGroup name and search in the export/import projects under data management and either del...

Dual-write connection set error: An item with the same key has already been added

If you happen to see this error message then you have duplicate records in cdm_company entity in CDS environment. Check for cdm_companycode field this is normally not allowed but have a look and delete the ones with duplicates.