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.
Would the bottom of the box happen to go past the printable area or the specified margins of the page? If you move the box up (or the margins down) a bit is it still missing?
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, 2007
Same problem if you use SET PRINTPLUS=ON SET PAGE-NUM=NOLEAD
??
Can't tell exactly what you're seeing without an example.
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, 2007
Appears to work in 7.6.5. I assume the problem occurs in PDF reports. Perhaps it's caused by something else in the style sheet.
TABLE FILE GGSALES
SUM DOLLARS
BY PRODUCT
BY REGION
BY CITY
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLESHEET *
FONT='ARIAL', SIZE=8, $
TYPE=DATA,BORDER=LIGHT, $
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
I've seen the same issue with PDF, in 7.6.6, but only on wrapping a column, seems to lose track of things once a column has wrapped to another line, but only at the bottom of the page.
I will experiment further with Waz's idea but lunch is finished now.
I did investigate settings of BOTTOMGAP and TOPGAP and they have no bearing on the issue.
Thanks to all!
DEFINE FILE GGSALES
MEGASTRING/A200 WITH DOLLARS = 'Thanks for that info Waz. I suppose that''s why they call you Mr PDF on the forum. I wonder if this massive string will cause problems. I hope so.' ;
END
TABLE FILE GGSALES
SUM DOLLARS
MEGASTRING
BY PRODUCT
BY REGION
BY CITY SKIP-LINE
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLESHEET *
FONT='ARIAL', SIZE=8, $
TYPE=DATA,BORDER=LIGHT, $
TYPE=REPORT,COLUMN=MEGASTRING, WRAP=1.0, $
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF
END
Server: WF 7.6.2 ( BID/Rcaster) Platform: W2003Server/IIS6/Tomcat/SQL Server repository Adapters: SQL Server 2000/Oracle 9.2 Desktop: Dev Studio 765/XP/Office 2003 Applications: IFS/Jobscope/Maximo
Posts: 888 | Location: Airstrip One | Registered: October 06, 2006
I did not have skip line but had this problem. I found if I had multiple lines in my subhead with each line having different formating (first line was the only line to have the box around it), my bottom border would not appear.
To fix, I faked out the report by creating a dummy sort field in my define that was equal to my original sort field. Then I had both fields in my by statements and then separated out the subhead and put the first line with the borders in the first sort and put all other lines in the other sort subhead. This fixed my issue.
Just thought I would put another suggestion to help others if they run across this issue.