hoagieryder
MIS
I am attempting to pass a message from a few subreports into the page footer of my main report. The subreports are placed in the report footers of the main report. The formula that is placed in the group header of the subreport is:
whileprintingrecords;
shared stringvar message;
message := 'accrual';
The formula in the page footer of the main report is:
whileprintingrecords;
shared stringvar message;
message;
When I run the report, the message only appears in the page footer on the last page of the subreport. I placed the subreports in the report header section of the main report, and it appears I am getting the same problem. Any ideas?
whileprintingrecords;
shared stringvar message;
message := 'accrual';
The formula in the page footer of the main report is:
whileprintingrecords;
shared stringvar message;
message;
When I run the report, the message only appears in the page footer on the last page of the subreport. I placed the subreports in the report header section of the main report, and it appears I am getting the same problem. Any ideas?