Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Spacing in a PDF Report

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Spacing in a PDF Report
 Login/Join
 
Gold member
posted
I am creating a PDF report and putting all of the data in a subfoot and positioning each column in the subfoot. As a result, this particular PDF report is double spacing. Can anyone tell me how to eliminate the double spacing? I have pasted part of my code below. Thanks.

TABLE FILE WFMCD205
HEADING
""- Inpatient "
"Utilization and Cost Trends (Admits) - Medical/Surgical/ICU Rollup"
" "<12 12MR <22 PMPM "
"<12 PMPM <21 % Increase <32 Admits/1000 <43 Cost/Admit <53 Days/1000 <63 Cost/Day"
SUM
PMPM_YR3 NOPRINT
PMPM_YR2 NOPRINT
AND COMPUTE
PMPM_PCT23/D7.1% = (PMPM_YR3 - PMPM_YR2) / PMPM_YR2 * 100; NOPRINT
ADMITS_1000_YR3 NOPRINT
CADMIT_YR3 NOPRINT
DAYS_1000_YR3 NOPRINT
CDAY_YR3 NOPRINT
BY PRODUCT_NAME NOPRINT
BY HSGSORT NOPRINT
BY HGROUP NOPRINT
WHERE SORTER EQ 1
ON HGROUP SUBFOOT
"
"
FOOTING BOTTOM
"12 Month Rolling, Incurred through "Proprietary and Confidential "
"Actuarial Services - wfmcd205.pdf"
ON TABLE PCHOLD FORMAT PDF
-*ON TABLE HOLD AS WFMCD205 FORMAT PDF
ON TABLE SET ONLINE-FMT PDF
ON TABLE SET PAGE-NUM OFF
ON TABLE SET SQUEEZE ON
ON TABLE NOTOTAL
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0,
BOTTOMMARGIN=0,
BOTTOMGAP=0.054889,
TOPGAP=0,
$
TYPE=SUBFOOT, ITEM=1, SIZE = 10, BOTTOMGAP=0,POSITION = .1, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=LEFT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=3, SIZE = 10, BOTTOMGAP=0,POSITION = .87, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=5, SIZE = 10, BOTTOMGAP=0,POSITION = 2.44, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=7, SIZE = 10, BOTTOMGAP=0,POSITION = 3.98, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=9, SIZE = 10, BOTTOMGAP=0,POSITION = 5.29, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=11, SIZE = 10, BOTTOMGAP=0,POSITION = 6.56, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=SUBFOOT, ITEM=13, SIZE = 10, BOTTOMGAP=0,POSITION = 7.80, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $



TYPE=REPORT,
BORDER=OFF,
GRID=OFF,
FONT='ARIAL',
COLOR='BLACK',
STYLE=NORMAL,
SIZE=10,
SQUEEZE=.5,
ORIENTATION=LANDSCAPE,
$
 
Posts: 70 | Registered: April 04, 2007Report This Post
Virtuoso
posted Hide Post
The only thing you have in your subfoot is " ". Is this all of your code?


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Virtuoso
posted Hide Post
If you are supressing every column with NOPRINT, the report still retains rows for the data eventhough you are not showing it. Add a statement to you stylesheet to reduce the font size of the DATA.

TYPE=DATA, SIZE=1,$


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011
 
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003Report This Post
Virtuoso
posted Hide Post
I think even though you have everything as noprint you will get a blank line for the detail area, so your subfoot if it really is just a blank line will give another.


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Gold member
posted Hide Post
Thanks for all of the suggestions. I must have changed the code inadvertently when I was trying to resolve my problem so the subfoot part of the code was wrong. The subfoot statement that I had in my fex should have read this way.

ON HGROUP SUBFOOT
"
"

I have, however resolved my problem. My report now single spaces. I changed my code as follows:

TABLE FILE WFMCD205
HEADING
""- Inpatient "
"Utilization and Cost Trends (Admits) - Medical/Surgical/ICU Rollup"
" "<12 12MR <22 PMPM "
"<12 PMPM <21 % Increase <32 Admits/1000 <43 Cost/Admit <53 Days/1000 <63 Cost/Day"
SUM
PMPM_YR3 AS ' ' IN 12
PMPM_YR2 NOPRINT
AND COMPUTE
PMPM_PCT23/D7.1% = (PMPM_YR3 - PMPM_YR2) / PMPM_YR2 * 100; AS ' ' IN 23
ADMITS_1000_YR3 AS ' ' IN 37
CADMIT_YR3 AS ' ' IN 44
DAYS_1000_YR3 AS ' ' IN 57
CDAY_YR3 AS ' ' IN 64
BY PRODUCT_NAME NOPRINT
BY HSGSORT NOPRINT
BY HGROUP AS ' ' IN 1
WHERE SORTER EQ 1
FOOTING BOTTOM
"12 Month Rolling, Incurred through "Proprietary and Confidential "
"Actuarial Services - wfmcd205.pdf"
ON TABLE PCHOLD FORMAT PDF
-*ON TABLE HOLD AS WFMCD205 FORMAT PDF
ON TABLE SET ONLINE-FMT PDF
ON TABLE SET PAGE-NUM OFF
ON TABLE SET SQUEEZE ON
ON TABLE NOTOTAL
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0,
BOTTOMMARGIN=0,
BOTTOMGAP=0.054889,
TOPGAP=0,
$
TYPE=DATA, ITEM=1, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=LEFT,WIDTH=1.000, $
TYPE=DATA, ITEM=3, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=DATA, ITEM=5, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=DATA, ITEM=7, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=DATA, ITEM=9, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=DATA, ITEM=11, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $
TYPE=DATA, ITEM=13, SIZE = 10, STYLE = NORMAL,FONT=ARIAL,JUSTIFY=RIGHT,WIDTH=1.000, $

Thanks all!
 
Posts: 70 | Registered: April 04, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Spacing in a PDF Report

Copyright © 1996-2020 Information Builders