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.
I have requirement where in my output looks like below :
COl Col2 Col3 ------------------------------- aaa tablet1 Date1 tablet2 --
bbb tablet3 Date2 tablet4 ---
The above output has been achieved.
In the footer , i need the output like below :
Total Records = 2 (Line1) * Dash (--) Represents No Data Available. (Line2) This report requires secure handling. (Line3) Page 1 of 9 (Line4)
Here , Line1 represents the total no of records (that is distinct) .The distinct records have been identified as well.But Line1 alone need to be present in the last page of the PDF. Whereas the others Line2,Line3,Line4 should appear in every page.
The code i use to get the above output except (line1) is below line 1 appears in every page)
FOOTING BOTTOM "Total Records =<+0>&NLINES" "* Dash (--) Represents No Data Available." "This report requires secure handling." "Page of<+0> I have tried ON TABLE SUBFOOT , but it appears in a new page. Have tried PAGE_BREAK as well. It does not work as i need.
You might be able to do a COMPUTED field based on the TABPAGENO field that either contains the footing text or a blank. Then you can embed that computed field in your footing. Something like this:
TABLE FILE CAR
SUM
CNT.CAR WITHIN TABLE NOPRINT
COMPUTE CARTOT/A5=FTOA(CNT.CAR,'(D2)',CARTOT); NOPRINT
COMPUTE PG1FOOT/A50=IF TABPAGENO EQ 1 THEN 'Appears on Page 1 only: Total Records: '|CARTOT ELSE ''; NOPRINT
BY COUNTRY
BY CAR
ON COUNTRY PAGE-BREAK
FOOTING BOTTOM
"<PG1FOOT "
"Page <TABPAGENO of <TABLASTPAGE "
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT, $
TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=10, STYLE=NORMAL, $
TYPE=FOOTING, JUSTIFY=CENTER,$
ENDSTYLE
END
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