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.
Hi, I'm using compound HTML report. It's not working when I use Subfoot on my report. If I comment that, it's working fine. I'm wondering what may be the issue with this.
Thanks Kamesh
Posts: 780 | Location: Florida | Registered: January 09, 2005
My code will look something like this. But it is working fine. Note: this examples misses html, script, body and head tag as I'm not able to paste that here.
DEFINE FILE CAR NCAR/A20 = '&' || 'NEW' || CAR; END -RUN
TABLE FILE CAR PRINT CAR NOPRINT IF RECORDLIMIT EQ 1 ON TABLE SUBHEAD "SAMPLE REPORT" "Printed on 03-25-2005" ON TABLE PCHOLD FORMAT HTML -****************************************** -*ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * TYPE=REPORT,IMAGE=/ibi_html/images/ibilogo.gif, POSITION=(+0.000000 +0.000000),ALT='IBI Logo',JAVASCRIPT= closewin(),$ ENDSTYLE END -RUN
-HTMLFORM BEGIN <TITLE>sample Report</TITLE> function closewin() { window.close() } -HTMLFORM END
-LOOPBNK -IF &J EQ &I THEN GOTO ENDPRG; DEFINE FILE CAR ADD SP/A1=HEXBYT(160,'A1'); END
TABLE FILE CAR PRINT BODYTYPE MODEL OVER SEATS DEALER_COST OVER SP AS '' BY CAR NOPRINT IF CAR EQ 'BMW' OR 'JAGUAR' WHERE RECORDLIMIT EQ 10 ON TABLE SUBHEAD "DETAILS ABOUT BMW AND JAGUAR CARS" ON CAR SUBFOOT "SUBTOTAL: <ST.DEALER_COST" ON TABLE SUBFOOT "---END OF REPORT---" ON TABLE NOTOTAL ON TABLE SET PAGE NOLEAD ON TABLE HOLD FORMAT HTMTABLE AS OUT1 ON TABLE SET STYLE * -INCLUDE stylev01ir ENDSTYLE END -RUN
TABLE FILE CAR PRINT NCAR BY CAR IF CAR NE 'BMW' WHERE RECORDLIMIT EQ 10 ON TABLE SUBHEAD "DETAILS ABOUT CARS OTHER THAN BMW AND JAGUAR" ON CAR SUBFOOT "</1 SUBFOOT ON 2ND REPORT" ON TABLE SUBFOOT "---END OF REPORT---" ON TABLE HOLD FORMAT HTMTABLE AS OUT2 ON TABLE SET STYLE * -INCLUDE stylev01ir ENDSTYLE END -RUN -SET &J=&J+1;