Hello All,
Regarding the pre forma invoice report of purchase order invoices, I need to do some customization on the report, but I can't actually locate the report name or design I thought it's VendInvoiceDocument, but it's not responding to my customization
note: I duplicated the report I added simple static text in the design and I made extensions of menuitems VendInvoiceDocument, VendInvoiceDocumentCopy and VendInvoiceDocumentOriginal, I made a new class extends the VendInvoiceDocumentController calass and I rewrite the main method
public static void main(Args _args)
{
SrsReportRunController formLetterController = MyVendInvoiceDocumentController::construct();
MyVendInvoiceDocumentController controller = formLetterController;
controller.parmReportName(ssrsReportStr(VendInvoiceDocumentCopy, Report));
controller.parmArgs(_args);
controller.parmShowDialog(false);
controller.parmDialogCaption("@SYS22766");
controller.startOperation();
}
I assigned the menuitems I extended to my new class, I tried the 3, but non works, I also tried to duplicate VendInvoiceDocumentB_IN report and do the same process, and I can actually see a direct way to locate the report, or I have the right report and doing something wrong in the code?
Thanks in advance