Reuben B.
Posts: 1116
|
« Reply #2 on: August 26, 2009, 12:29:51 am » |
|
Notwithstanding what is being dealt with at a support level, two things I'll point out...
1. If you have a 4gl file with just the REPORT statement in it then the .rdd file created is smaller and hence may be able to be uploaded.
2. One technique I used recently with data coming from multiple foreach loops was
FOREACH ... INTO a.* OUTPUT TO REPORT report-name("A", a.*, NULL, NULL) END FOREACH
FOREACH ... INTO b.* OUTPUT TO REPORT report-name("B", NULL, b.*, NULL) END FOREACH
FOREACH ... INTO c.* OUTPUT TO REPORT report-name("C", NULL, NULL, c.*) END FOREACH
REPORT report-name(type, a-data, b-data, c-data)
ON EVERY ROW PRINTX type, a-data, b-data, c-data
and then in the 4rp in the ON EVERY ROW, create 3 stripes, one for a-data, b-data, c-data etc, and set the visibility condition of the stripe to be type=='A', type=='B', type=='C" respectively
|