Dear Community,
I created a report extension for Production Order. I would like to display the comments in the Prod BOM Header.
For this, I created the following dataset:
reportextension 50010 VERINTProdOrderComp extends "Prod. Order - Mat. Requisition"
{
dataset
{
add("Production Order")
{
column(EndingDateTime; "Ending Date-Time") { }
column(StartingDateTime; "Starting Date-Time") { }
}
addlast("Production Order")
{
dataitem("Prod. BOM Comment"; "Manufacturing Comment Line")
{
DataItemLink = "No." = FIELD("Source No.");
DataItemTableView = WHERE("Table Name" = FILTER("Production BOM Header"));
column(MCL_Comments; Comment) { }
}
}
}
}
Then, on my report, I added the field [MCL_Comments], but it remains empty despite I have 6 lines of comments in my table:
Could you please guide me to the solution?
Best regards,
Jay Rome