pageextension 70120 "Sales Invoice Card Ext" extends "Sales Invoice"
{
layout
{
addafter("Sell-to Customer Contact")
{
field(NameOfYourField; Rec."Name if Your Field")
{
ApplicationArea = All;
Caption = 'Name of your field';
}
}
}
}
Something like the above would do the trick. Note the field in addafter() you can lookup or use a different one. I’ve put in a placeholder value of “Name of Your Field” - assume this will be a custom one added with a table extension.
Also the object number can be changed to meet your range for that project/tenant