Using CRXI and SQL Svr
I have a report grouped by LOC that includes 5 sub-reports each placed in a report footer.
In the main report just like the sub-reports, I use a flag to end the printing of the page header beginning with RFa where @True - is placed.
@False - is placed in both the report header and page footer.
The Page Header contains the following:
All report footers of the main report with the exception of RFa do not have 'New Page After' checked.
All sub-report footers do not have 'New Page After' checked on RFc which is the last footer for each report.
All reports include the following which are placed in the Page Footer:
@ReportFileName - To display report name.
@ReportCreated - To display report creation date
1)Why do I see a page in between each sub report that displays just the Page Header?
2)Why doesn't the ReportFileName and ReportCreated display on the subreports?
Your time is appreciated.
LT
I have a report grouped by LOC that includes 5 sub-reports each placed in a report footer.
In the main report just like the sub-reports, I use a flag to end the printing of the page header beginning with RFa where @True - is placed.
Code:
whileprintingrecords;
booleanvar flag:=true;
@False - is placed in both the report header and page footer.
Code:
whileprintingrecords;
booleanvar flag:=false;
The Page Header contains the following:
Code:
whileprintingrecords;
booleanvar flag:
flag =true
All report footers of the main report with the exception of RFa do not have 'New Page After' checked.
All sub-report footers do not have 'New Page After' checked on RFc which is the last footer for each report.
All reports include the following which are placed in the Page Footer:
@ReportFileName - To display report name.
Code:
StringVar Array File:=Split (Filename, '\');
NumberVar i := Ubound(File);
File[i];
@ReportCreated - To display report creation date
Code:
"Creation Date: " & Totext(filecreationdate)
1)Why do I see a page in between each sub report that displays just the Page Header?
2)Why doesn't the ReportFileName and ReportCreated display on the subreports?
Your time is appreciated.
LT