Hello!
I am trying to add an extension to a report and making the fields available in Word as XML fields.
Usually I just code the reportextension, publish it, go to Report Layout Selection, and make a new report based on the old one. The new fields are now available when I export the report and edit it.
However, this way of doing it is being deprecated, and I can no longer do it that way.
The report is initially a custom report from an extension, and I just want to add another field to it by making a reportextension.
The new way of customizing the reports are under Report Layouts. I can't edit or remove the current one (because it is from an extension, and not a user defined report). If I make a new one based on the report, the new fields are not there.
How do I get the new custom fields into my new custom report?
This is the reportextension:
reportextension 50106 SalesInvoiceExt extends CR_SalesInvoice
{
dataset
{
add(Line)
{
column(ProductInfo; ProductInfo) { }
column(SalesInfo; SalesInfo) { }
}
}
}