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.
My report have a page header also which required to print on every page, below the page header i want to print something which required to print on first page only, do not want to print on 2nd page onwards. I tried print the things using report header, it print on first only correctly but it will move to above the page header, i think it is due to webfocus always let report header locate above the page header. Any idea that i can print the things below the page header and on first page only?
For example: 1st page: Header A Header B SubItem 1 SubItem 2 SubItem 3 SubItem ...
2nd page: Header A
SubItem 4 SubItem 5 SubItem 6 SubItem ...
All are text content.
Thanks.This message has been edited. Last edited by: FP Mod Chuck,
Will not work Prarie. What KingKong wants is to have more header rows on first page than other ones where additional heading rows are display below "normal" header' rows.
Such as :
Page 1 First line of header Second line of header Third line of header Fourth line of header
Page 2 First line of header Second line of header
Page 3 First line of header Second line of header
Using the SUBHEAD it result in :
Page 1 First line of header Second line of header Third line of header Fourth line of header
Page 2 Third line of header Fourth line of header
Page 3 Third line of header Fourth line of header
To perform this, you need to do the page skip "manually".
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
This can be one way but may not work with all output format Determine how may data rows can be printed (or you want) on first page.
-SET &NBROWPG1 = 3;
TABLE FILE GGSALES
SUM DOLLARS
COMPUTE ROWID /I4 = ROWID + 1;
BY REGION
BY PRODUCT
BY CATEGORY
ON TABLE HOLD AS EXTDATA
END
-RUN
TABLE FILE EXTDATA
SUM DOLLARS
BY REGION
BY PRODUCT
BY CATEGORY
WHERE ROWID LE &NBROWPG1;
ON TABLE HOLD AS PGE1DATA
END
-RUN
TABLE FILE EXTDATA
SUM DOLLARS
BY REGION
BY PRODUCT
BY CATEGORY
WHERE ROWID GT &NBROWPG1;
ON TABLE HOLD AS OTHPGEDATA
END
-RUN
TABLE FILE PGE1DATA
SUM DOLLARS
BY REGION
BY PRODUCT
BY CATEGORY
HEADING
"Header all report"
"Header page 1"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT PDF OPEN
ON TABLE NOTOTAL
ON TABLE SET BYDISPLAY ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
UNITS=IN,
LEFTMARGIN=0.50000,
RIGHTMARGIN=0.50000,
TOPMARGIN=0.50000,
BOTTOMMARGIN=0.50000,
SQUEEZE=ON,
PAGESIZE='Letter',
ORIENTATION=LANDSCAPE,
$
ENDSTYLE
END
-RUN
TABLE FILE OTHPGEDATA
SUM DOLLARS
BY REGION
BY PRODUCT
BY CATEGORY
HEADING
"Header all report"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT PDF CLOSE
ON TABLE NOTOTAL
ON TABLE SET BYDISPLAY ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
UNITS=IN,
LEFTMARGIN=0.50000,
RIGHTMARGIN=0.50000,
TOPMARGIN=0.50000,
BOTTOMMARGIN=0.50000,
SQUEEZE=ON,
PAGESIZE='Letter',
ORIENTATION=LANDSCAPE,
$
ENDSTYLE
END
-RUN
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013