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;
}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,900 Super User 2024 Season 2
Martin Dráb 229,297 Most Valuable Professional
nmaenpaa 101,156