Focal Point
SUBFOOT Formatting Question for PDF

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7831008732

July 19, 2007, 03:04 PM
smiths
SUBFOOT Formatting Question for PDF
In the following code, how do I get formatting for the SUBFOOT to stop at the last field, and not go to the end of the page? The question is specifically for PDF format.

TABLE FILE CAR
PRINT CAR
DEALER_COST
BY SEATS
ON SEATS SUBFOOT
"Total :<SEATS Seats <+0> <ST.DEALER_COST "

ON TABLE PCHOLD FORMAT PDF

ON TABLE SET STYLE *

TYPE=REPORT,
     UNITS=IN,
     PAGESIZE='Letter',
     ORIENTATION=LANDSCAPE,
     SIZE=7,
$

TYPE=SUBFOOT,
     BACKCOLOR=RGB(210 210 210),
     STYLE=BOLD,
$
 
TYPE=SUBFOOT,
     ITEM=2,
     OBJECT=FIELD,
     COLOR=RED,
     POSITION=DEALER_COST,
$

ENDSTYLE
END


Thanks!
Sean


------------------------------------------------------------------------
PROD: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
TEST: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
July 19, 2007, 03:26 PM
Leah
Must be a 5.2.8 issue as in 7.6.2 on Linux using Adobe Acrobat Reader 8, it is all on one page and only under each break.


Leah
July 19, 2007, 03:34 PM
smiths
Leah,

What I mean is that the background line coloured grey on the subfoot goes to the edge of the page to the far right, and doesn't stop at the DEALER_COST field.

I am actually testing this on 7.6.2 (I'll update my profile), but on Adobe Reader 7.0.

Thanks,
Sean


------------------------------------------------------------------------
PROD: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
TEST: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
July 19, 2007, 03:43 PM
smiths
Got it...

I needed to set SQUEEZE=ON for TYPE=REPORT.

Thanks to all who looked into this for me!
Sean


------------------------------------------------------------------------
PROD: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
TEST: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode