Skip to main content

Notifications

Announcements

No record found.

Small and medium business | Business Central, N...
Answered

I want to add a column VAT in the Purch.Inv.Line table and I want to add a column

(1) ShareShare
ReportReport
Posted on by 21
 I want to add a column VAT in the Purch.Inv.Line table and I want to add a column which will have values = Amount including Vat - Amount. how to do this? Please help !!!!!!!!!!!!!
  • Community member Profile Picture
    Community member 21 on at
    I want to add a column VAT in the Purch.Inv.Line table and I want to add a column
    Thanks a lot.
  • Verified answer
    YUN ZHU Profile Picture
    YUN ZHU 75,883 Super User 2024 Season 2 on at
    I want to add a column VAT in the Purch.Inv.Line table and I want to add a column
    Hi, this requires customization. Hope the following helps.
    pageextension 50122 MyExtension7 extends "Posted Purch. Invoice Subform"
    {
        layout
        {
            addafter("Line Amount")
            {
                field(TotalVAT; TotalVAT)
                {
                    Caption = 'Total VAT';
                    ApplicationArea = All;
                }
            }
        }
    
        trigger OnAfterGetRecord()
        begin
            TotalVAT := 0;
            TotalVAT := Rec."Amount Including VAT" - Rec.Amount;
        end;
    
        var
            TotalVAT: Decimal;
    }
     
     
    Thanks.
    ZHU
     

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

Congratulations 2024 Spotlight Honorees

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December

Congratulations to our December super stars! 🥳

Start Your Super User Journey

Join the ranks of our community heros! 🦹

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,468 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans