Unfortunately it's not like "sequence no." in "Report Selection" table, where you can define multiple report( i have try with 2) with sequence no. incremental.
You will have to customise it(would be only minor customization in CU 232) nearby below code.
IF GenJnlTemplate."Posting Report ID" <> 0 THEN BEGIN
GLReg.SETRECFILTER;
REPORT.RUN(GenJnlTemplate."Posting Report ID",FALSE,FALSE,GLReg);
END;
I went to CU 232 and below, i insert the line (underlined), i'm not 100% if the code is correct.
Can you help me to build the code i need.
Summarizing: I'm trying to post and print in Financial Management - Receivables - Cash Receipt Journals.
I want to print simultaneous 2 reports: "G/L Register" and other report that i created (receipt).
I want the receipt to get de correct information that i registering in that moment (with the line i insert, i get more than 200 receipts).
IF GenJnlTemplate."Posting Report ID" <> 0 THEN BEGIN
GLReg.SETRECFILTER;
REPORT.RUN(GenJnlTemplate."Posting Report ID",FALSE,FALSE,GLReg); REPORT.RUNMODAL(REPORT::"MY REPORT",FALSE,FALSE,"TABLE TO GET DATA - CustLedgEntry");
Comments
http://ssdynamics.co.in
You will have to customise it(would be only minor customization in CU 232) nearby below code.
I went to CU 232 and below, i insert the line (underlined), i'm not 100% if the code is correct.
Can you help me to build the code i need.
Summarizing: I'm trying to post and print in Financial Management - Receivables - Cash Receipt Journals.
I want to print simultaneous 2 reports: "G/L Register" and other report that i created (receipt).
I want the receipt to get de correct information that i registering in that moment (with the line i insert, i get more than 200 receipts).
IF GenJnlTemplate."Posting Report ID" <> 0 THEN BEGIN
GLReg.SETRECFILTER;
REPORT.RUN(GenJnlTemplate."Posting Report ID",FALSE,FALSE,GLReg);
REPORT.RUNMODAL(REPORT::"MY REPORT",FALSE,FALSE,"TABLE TO GET DATA - CustLedgEntry");
http://ssdynamics.co.in
CustLedgEntry.SETRANGE("Entry No.",GLReg."From Entry No.",GLReg."To Entry No.");
REPORT.RUNMODAL(REPORT::"My report",FALSE,FALSE,CustLedgEntry);
know when i post and print, i get the correct information on my receipt.