web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)
Unanswered

Creating an Account Distribution in X++

(0) ShareShare
ReportReport
Posted on by 1,200

In testing out the copy lines funcitonailty for purchase requisitions in 2012 we have noticed that it does not copy the financial distributions from the selected line. We really need this to occur so I was looking to try and add the creation of matching accounting distributions it in to the copy lines funcitonality. Simply copying the record does not appear to work as there is a lot of relational tables, etc that are touched so I want to just create a new distributon and copy over the amounts, dimensions, etc from the original distribution.

I am assuming I need to use the AccountingDistributionProcessor but I was hoping someone had experience with adding accounting distributions via X++ code and could perhapd point me in the right direction?

Any help would be greatly appreciated!!

 

Thanks,

Anna P.

*This post is locked for comments

I have the same question (0)
  • A Petersen Profile Picture
    1,200 on at

    I have discovered that the copy functionality does in fact copy the distributions but only if the requisition being copied is not in draft or rejected status. It is interesting that the documentation on the copying process does not specifically call out this difference. I htink it is a miss on Microsofts part to not make it more clear.

    However, I am still interested in learning more about the accounting distribution framework and how one could possibly create a distribution in code if anyone has any further information :)

    Thanks,

    Anna

  • Community Member Profile Picture
    on at

    I have found the following solution for the issue :

              ttsBegin;

              while select //Every line that you want to add in distribution

              {

                  accountingDist.clear();

                  accountingDist.AccountingDate = AccountingDate;

                  accountingDist.AccountingLegalEntity = AccountingLegalEntity;

                  accountingDist.AllocationFactor = AllocationFactor;

                  accountingDist.AmountSource = AmountSource;

                  accountingDist.LedgerDimension = LedgerDimension;

                  accountingDist.MonetaryAmount = MonetaryAmount;

                  accountingDist.Number = Number;

                  accountingDist.ReferenceRole = ReferenceRole;

                  accountingDist.Role = Role;

                  accountingDist.TransactionCurrency = TransactionCurrency;

                  accountingDist.TransactionCurrencyAmount = TransactionCurrencyAmount;

                  accountingDist.Type = Type;

                  accountingDist.SourceDocumentHeader = vendInvoiceInfoLine.vendInvoiceInfoTable().SourceDocumentHeader;

                  accountingDist.SourceDocumentLine = vendInvoiceInfoLine.SourceDocumentLine;

                  accountingDistCorrigee.insert();

              }

    sourceDocumentLine.AccountingStatus = SourceDocumentLineAccountingStatus::PartlyDistributed;

          sourceDocumentLine.update();

          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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans