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     [Closed]Removing Blank Line Between Data and Footer

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[Closed]Removing Blank Line Between Data and Footer
 Login/Join
 
Gold member
posted
I've done some searching and this seems to be a common issue trying to remove lines between headers/footers and the report data. I couldn't find a solid answer in the search results I came across, but I tried SET DROPBLNKLINES = ALL and ON, neither worked. I also tried removing ON TABLE SET HTMLCSS ON and no success either.

I'm trying to output to HTML format as well. Anyone have any solutions for removing these unwanted lines? Here's my code:
TABLE FILE FOCLMCONVERSIONVERBALAPPTOWRITTEN
SUM
     COMPUTE CONVERSIONRATE/D12.2% = ( TOT.FOCLMCONVERSIONVERBALAPPTOWRITTEN.SEG01.VERBALCONVERSION / TOT.FOCLMCONVERSIONVERBALAPPTOWRITTEN.SEG01.VERBALAPP ) * 100; AS ''
     COMPUTE AVGAGECONVERSION/D12.2 = AVE.FOCLMCONVERSIONVERBALAPPTOWRITTEN.SEG01.VERBALTOWRITTENAGE; NOPRINT
FOOTING
" % Written Apps Converted "
"June 2015"
ON TABLE SUBFOOT
"<AVGAGECONVERSION <+0> <+0> "
"Avg Age of Conversion<+0> <+0> <+0>Right Metric"
" <+0> <+0> <+0> "
WHERE ( FOCLMCONVERSIONVERBALAPPTOWRITTEN.SEG01.VERBALAPPLICATIONDATE GE '20150601' ) AND ( FOCLMCONVERSIONVERBALAPPTOWRITTEN.SEG01.VERBALAPPLICATIONDATE LT '20150701' );
ON TABLE SET AUTOFIT ON
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     INCLUDE = IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/combine_templates/MidFirst_report_theme.sty,
$
     PAGECOLOR=RGB(255 102 0),
$
TYPE=REPORT,
     COLOR='WHITE',
     BACKCOLOR=RGB(255 102 0),
     CALC-LOCATION=TOP,
$
TYPE=DATA,
     COLOR='WHITE',
     BACKCOLOR=RGB(255 102 0),
$
TYPE=DATA,
     COLUMN=N1,
     SIZE=36,
     JUSTIFY=CENTER,
$
TYPE=TITLE,
     COLUMN=N1,
     SIZE=36,
     BACKCOLOR=RGB(255 102 0),
     JUSTIFY=CENTER,
$
TYPE=TABFOOTING,
     BORDER-TOP=OFF,
     BORDER-TOP-COLOR=RGB(102 102 102),
$
TYPE=TABFOOTING,
     LINE=1,
     OBJECT=TEXT,
     ITEM=1,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=1,
     OBJECT=TEXT,
     ITEM=2,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=1,
     OBJECT=TEXT,
     ITEM=3,
     JUSTIFY=LEFT,
     WIDTH=3.000,
$
TYPE=TABFOOTING,
     LINE=1,
     OBJECT=FIELD,
     ITEM=1,
     SIZE=20,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=2,
     OBJECT=TEXT,
     ITEM=1,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=2,
     OBJECT=TEXT,
     ITEM=2,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=2,
     OBJECT=TEXT,
     ITEM=3,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=2,
     OBJECT=TEXT,
     ITEM=4,
     JUSTIFY=RIGHT,
     WIDTH=3.000,
$
TYPE=TABFOOTING,
     LINE=3,
     OBJECT=TEXT,
     ITEM=1,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=3,
     OBJECT=TEXT,
     ITEM=2,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=3,
     OBJECT=TEXT,
     ITEM=3,
     JUSTIFY=LEFT,
     WIDTH=1.000,
$
TYPE=TABFOOTING,
     LINE=3,
     OBJECT=TEXT,
     ITEM=4,
     JUSTIFY=LEFT,
     WIDTH=3.000,
$
TYPE=FOOTING,
     SIZE=7,
     COLOR=RGB(102 102 102),
     JUSTIFY=CENTER,
$
TYPE=FOOTING,
     LINE=1,
     OBJECT=TEXT,
     ITEM=1,
     SIZE=9,
     COLOR='WHITE',
$
TYPE=FOOTING,
     LINE=2,
     OBJECT=TEXT,
     ITEM=1,
     SIZE=9,
     COLOR='WHITE',
$
TYPE=REPORT,
     OBJECT=STATUS-AREA,
     JUSTIFY=LEFT,
     PAGE-LOCATION=TOP,
$
ENDSTYLE
END

This message has been edited. Last edited by: capples,


WF 8.2.0.3
Windows 10 64bit
HTML, AHTML, PDF, Excel
 
Posts: 83 | Registered: April 13, 2015Report This Post
Gold member
posted Hide Post
I did some more digging into the stylesheets and it looks like it might have something to do with the GRID = OFF setting. When I change this to GRID = ON and also remove the lines:

TYPE=TABFOOTING,
BORDER-TOP=OFF,
BORDER-TOP-COLOR=RGB(102 102 102),
$

then the report does not have the gap between the data and the footer. However, then it has a grid around everything that I do not want either. Still trying to find a solution for this. I would ideally want the grid off and this space removed.


WF 8.2.0.3
Windows 10 64bit
HTML, AHTML, PDF, Excel
 
Posts: 83 | Registered: April 13, 2015Report This Post
Guru
posted Hide Post
Have you tried commenting out the style sheet? My first thought is it's something in there causing it.


WebFOCUS Server 8.1.05
Windows 2008 Server
WebFOCUS AppStudio 8.1.05
Windows 7 Professional
IE 11 and Chrome Version 43.0.2357.124 m.
Mostly HTML, PDF, Excel, and AHTML
 
Posts: 272 | Location: Kalamazoo, Michigan | Registered: September 30, 2010Report This Post
Platinum Member
posted Hide Post
Capples,

 ON TABLE SET PAGE NOPAGE 


and use

 ON TABLE SET ACROSSLINE OFF 

 ON TABLE SET ACROSSLINE SKIP 


I guess that's pretty much there is...


WebFOCUS 8105m
Windows 7, All Outputs

Member of the Benelux Usergroup
 
Posts: 198 | Location: Amsterdam | Registered: August 24, 2011Report 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     [Closed]Removing Blank Line Between Data and Footer

Copyright © 1996-2020 Information Builders