Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics AX (Archived)

Sales Order details Report

Posted on by 572

Hi Guys,

I am developing a report containing some Sales Order lines details. I need to include back order quantity in Kg and back order amount in company base currency in my report. Can someone help me to create a code to calculate and show back order amount in base currency.

consider the company base currency is USD, the requirement is,

back order quantity = SalesLine.RemainInventPhysical (Its already there)

1.  If the SalesPrice is in USD : Back order amount =  SalesPrice * RemainInventPhysical

2.  If the SalesPrice is other than USD: the code should check the field FixedExchange rate in the salesTable, If it contains      a value the formula should be 

     Back order amount =  (FixedExchange rate * SalesPrice) * RemainInventPhysical

3.  If the field FixedExchange rate has no value the code should consider currency from the salesline and respective latest      currency rate from the table ExchRates and the formula should be

     Back order amount =  (Currency's latestExchRate * SalesPrice) * RemainInventPhysical

Thanks in Advance.

*This post is locked for comments

  • Suggested answer
    Mea_ Profile Picture
    Mea_ 60,278 on at
    RE: Sales Order details Report

    Hi Alex Antony,

    Try this:

    Back order amount = Currency::curAmount(
       SalesPrice * RemainInventPhysical,
       salesLine.CurrencyCode,
       exchRateDate,  //probably systemDateGet()
       salesTable().fixedEuroTriangulation(),
       salesTable().fixedExchRate(),
       salesTable().fixedExchRateSecondary());

    or simple 

    Back order amount = salesLine.amountCur(salesLine.SalesPrice * salesLine.RemainInventPhysical);

    However, please don't forget that you may have discounts on the line or header level that this method won't consider.

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!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Suggested Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,198 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans