Hello, new to extension building and I am struggling to extend the Production Order Job card report with the column "Shelf No" from the "Item" table.
I believe im just getting the syntax wrong. Im starting the extension with a table extension defining the field to add, then in the same app file defining the report extension. Where I am getting stuck is (i think) the table extension. Currently its this:
tableextension 50999 Shelf extends "Prod. Order Component"
{
fields
{
field(50909; ShelfNo; Integer)
{
DataClassification = ToBeClassified;
}
}
}
This is creating an empty column. Do I need to use some form of query instead of defining a field above to extend that table then bring it into the reportextension?
Thank you for any help you can provide.