I created an extension for the "Service Invoice-Sales Tax" RDLC report 10474, so I can show the General Comments on a Service Invoice that gets printed and sent to the customer
I tried to add the comment from the Service Invoice Header DataItem, but this is a boolean value. How can I get the service comments onto the service invoice report?
reportextension 50122 "Service Invoice Report" extends "Service Invoice-Sales Tax"
{
dataset
{
add("Service Invoice Header")
{
column(ServiceInvoiceGenComment; Comment ) { }
column(ServiceInvoiceGenCommentLbl; Service_CommentsLbl) { }
}
}
var
Service_Comments: Text;
Service_CommentsLbl: Label 'Service Comments';
}