Skip to main content

Notifications

Microsoft Dynamics AX (Archived)

x++ Multiple POs in single invoice

Posted on by Microsoft Employee

Hello,

Can someone please share the code to post single invoice for multiple Purchase orders through x++.

These are service item purchase orders so packing slip is not required.

I am able to create invoice for inidividual purchase order but struggling to crease single invoice for multiple purchase orders.

I am using ax 2012 R2.

An urgent feedback will be highly appreciated.

Thanks.

*This post is locked for comments

  • Verified answer
    Community Member Profile Picture
    Community Member Microsoft Employee on at
    RE: x++ Multiple POs in single invoice

    The following code will post single invoice against multiple purchase orders.

    static void Bilal_postPOMultiple(Args _args)

    {

       PurchFormLetter                 purchFormLetter;

       //PurchTable _purchTable = PurchTable::find("000592");

       PurchTable          purchTable;

       Map                 mapPurchTable;    

       ttsBegin;

       // Confirm order

       //purchFormLetter = purchFormLetter::construct(DocumentStatus::PurchaseOrder);

       //purchFormLetter.update(_purchTable,'');

       // Invoice order

       purchFormLetter = purchFormLetter::construct(DocumentStatus::Invoice);

       mapPurchTable = new Map(typeName2Type(extendedTypeStr(RecId)), Types::Record);

       purchTable = PurchTable::find("001228");

       mapPurchTable.insert(purchTable.RecId, purchTable);

       purchTable = PurchTable::find("001229");

       mapPurchTable.insert(purchTable.RecId, purchTable);

       purchFormLetter.parmDataSourceRecordsPacked(mapPurchTable.pack());

       purchFormLetter.initNewPurchParmUpdate();

       purchFormLetter.sumBy(AccountOrder::Account);

       purchFormLetter.reArrangeNow(true);

       purchFormLetter.update(purchTable,

                              "In4f9231",

                              systemDateGet(), PurchUpdate::All);

       ttsCommit;

    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

New! Quick response templatesâš¡

Save time with the new custom templates!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,151 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 229,993 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans