Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

Sales Order details Report

(0) ShareShare
ReportReport
Posted on by 578

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
    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

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Kudos to the February Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,278 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,983 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans