Hi,
I need to add "Company Information"."Stock Capital" to the "Standard Sales - Quote" with the reportextension.
In the reportextension, I added this (with some custom labels):
addfirst(Header)
{
dataitem("Company Information"; "Company Information")
{
//CompanyInfoStockCapital = "Company Information"."Stock Capital";
column(CompanyInfoStockCapital; "Stock Capital") { }
}
}
add(Header)
{
column(Customer_Lbl; Customer_Lbl) { }
column(Date_Lbl; Date_Lbl) { }
column(Description_Lbl; Description_Lbl) { }
column(EAN_Code_Lbl; EAN_Code_Lbl) { }
column(MSRP_Lbl; MSRP_Lbl) { }
column(NPU_Lbl; NPU_Lbl) { }
column(Line_amount_Lbl; Line_amount_Lbl) { }
column(Cst001_Lbl; Cst001_Lbl) { }
column(APE_Lbl; APE_Lbl) { }
//column(CompanyInfoStockCapital; CompanyInfo.Name) { }
}
But, when I run report, some fields of the "Standard Sales - Quote" are missing:

without addfirst(Header), these fields are visible:

Thanks you for your kind reply,