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 :
Finance | Project Operations, Human Resources, ...
Suggested Answer

Posted Transactions "Invoice Status" - D365 Project Management & Accounting

(2) ShareShare
ReportReport
Posted on by 4
Which table displays the invoice status of a Project Posted Transaction?
 
The Invoice status will be one of  Fully invoiced, Chargeable, Nonchargeable or Adjusted
I have the same question (0)
  • Suggested answer
    André Arnaud de Calavon Profile Picture
    300,911 Super User 2025 Season 2 on at
    Hi RT22,
     
    The details are stored in different tables, depending on the type and status of the project transactions. On the Posted Project transactions page, this column is a calculated field. Here is the coding which you can also use or start from to find where all details are stored:
     
        public display ProjInvoiceStatus projInvoiceStatus(ProjPostTransView  _projPostTransView)
        {
            ProjInvoiceStatus   projInvoiceStatus;
    
            switch (_projPostTransView.ProjTransType)
            {
                case ProjTransType::Item:
                    projInvoiceStatus = ProjItemTrans::find(this.TransId).projInvoiceStatus();
                    break;
    
                case ProjTransType::Hour:
                    projInvoiceStatus = ProjEmplTrans::find(this.TransId).projInvoiceStatus();
                    break;
    
                case ProjTransType::Cost:
                    projInvoiceStatus = ProjCostTrans::find(this.TransId).projInvoiceStatus();
                    break;
    
                case ProjTransType::Revenue:
                    projInvoiceStatus = ProjRevenueTrans::find(this.TransId).projInvoiceStatus();
                    break;
    
                case ProjTransType::OnAccount:
                    projInvoiceStatus = ProjOnAccTrans::find(this.TransId).projInvoiceStatus();
                    break;
            }
    
            return projInvoiceStatus;
        }
    
    
     

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 > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Martin Dráb Profile Picture

Martin Dráb 664 Most Valuable Professional

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 522 Super User 2025 Season 2

#3
Sohaib Cheema Profile Picture

Sohaib Cheema 303 User Group Leader

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans