I created this table extension (and page extension) to add fields to Item
tableextension 50100 "Fuu Field" extends Item
{
fields
{
field(50100; "Fuu"; Text[100])
{
Caption = 'Fuu';
}
}
}How can I add the field to the Standard Sales - Invoice report dataset?
I tried the following, but neither Fuu_Line nor Fuu_Line_Lbl are recognized
reportextension 50100 FuuReport extends "Standard Sales - Invoice"
{
RDLCLayout = './src/StandardSalesInvoiceExtended.rdlc';
dataset
{
addLast(Line)
{
dataItem(Item; Item)
{
DataItemLink = "No." = FIELD("No.");
DataItemLinkReference = Line;
DataItemTableView = SORTING("No.");
column(Fuu_Line; Fuu) { }
column(Fuu_Line_Lbl; FieldCaption(Fuu)) { }
}
}
}
}

Report
All responses (
Answers (