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.
We use compound reports i.e. two TABLE requests outputting 2 HTML reports. Then we reference the reorts in the HTMLFORM etc. Just use unique names for the summary and detail reports (centering may help also).
WebFOCUS 7.6.11, WINDOWS, HTML, PDF, EXCEL
Posts: 77 | Location: Baltimore | Registered: May 31, 2006
TABLE FILE CAR
..do something
ON TABLE HOLD AS MYTAB1 FORMAT HTMTABLE
END
TABLE FILE EMPLOYEE
..do someting
ON TABLE HOLD AS MYTAB2 FORMAT HTMTABLE
END
-RUN
-HTMLFORM BEGIN
!IBI.FIL.MYTAB1;
!IBI.FIL.MYTAB2;
-HTMLFORM END
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
The below is showing a blank browser. !IBi.Fil. defines what?
Still new to WF and I hat how kluge some of functionality is. Did a knowledge search on HTMLFORM and it came back with junk. Just want to know what the syntex is?
quote:
-HTMLFORM BEGIN !IBI.FIL.MYTAB1; !IBI.FIL.MYTAB2; -HTMLFORM END
rc, if you look at my code extract, you'll see that mytab1 and mytab2 are the output tables of the two separate requests in the fex. Rather than dump the table to the screen, i hold it, and then present all the tables to the browser in one page. !IBI.FIL.somefilename; is one form of the 'bang ibi ' syntax, this case presents a file, 'bang ibi file'. There are others, for presenting &vars, etc.This message has been edited. Last edited by: susannah,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
The !IBI.FIL.FILENAME syntax is used to include files into the code, usually a HOLD file containing HTML code. See the following example using the CAR database.
TABLE FILE CAR SUM RCOST DCOST BY COUNTRY BY CAR ON TABLE HOLD FORMAT HTMTABLE AS 'THEFILE' END -RUN -HTMLFORM BEGIN <HTML> <BODY> <p>This is a WebFOCUS 7.1.3 Report</p> !IBI.FIL.THEFILE; </BODY> </HTML> -HTMLFORM END
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003
What browser are you using? Did you do a View Source to see if the report results are in the browser but just are not being shown? Technically you are giving the browser an incomplete HTML page because you have no <HTML> <BODY> open and closing tags.
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003