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 three different fex files which I want to integrate into one report. I don't think I can use compound reports as this would append the reports one below the other. I want two of the reports to appear side by side and the third one below it, all on one page. Can any one please help me out?
dharma ------------------ WF v 7.1.1 OS - Win XP Output: PDF, EXL2K
Posts: 41 | Location: Boston | Registered: August 17, 2005
It all depends on what is the target application for your output and the format of the individual reports.
For instance, if the target is a web browser and HTML then you could use frames and the format of your reports isn't an issue, however if the target is PDF then you might have a problem.
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
A side by side report in PDF compound? Can't think how you'd achieve that unless you managed to use FML to achieve your reports in adjacent cells with a gap between them. Hmmmm .... might have a go at that one.
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
sure Dharma, easy. Put all your fexes in 1 fex(so they execute in the same agent), making 3 separate tables. TABLE FILE CAR ...do stuff ON TABLE HOLD AS MYTAB1 FORMAT HTMTABLE END TABLE FILE EMPLOYEE ..do stuff ON TABLE HOLD AS MYTAB2 FORMAT HTMTABLE END TABLE FILE somethingelse ..do stuff ON TABLE HOLD AS MYTAB3 FORMAT HTMTABLE END -RUN -HTMLFORM BEGIN <TABLE> <TR> <TD VALIGN="TOP"> !IBI.FIL.MYTAB1; </TD> <TD VALIGN="TOP"> !IBI.FIL.MYTAB2; </TD> </TR> <TR> <TD COLSPAN="2" ALIGN="CENTER"> !IBI.FIL.MYTAB3; </TD></TR></TABLE> -HTMLFORM END ..and there you go, easy. As you didn't mention any particular format, i'll assume you're in html; And, fyi, this layout is emailable by reportcaseter, which is pretty cool.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
I'm surprised no one has mentioned COORDINATED PDF documents, a new feature in WF 710. If you are looking to create a PDF document with multiple reports then the Co-ordinated PDF Layout Tool in DevStudio allows you to do this. It is sort of like using HTML FRAMES for PDF documents.
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003
A side by side report in PDF compound? Can't think how you'd achieve that unless you managed to use FML to achieve your reports in adjacent cells with a gap between them. Hmmmm .... might have a go at that one.
True - for a side-by-side report you'd have to combine the data from the two programs and either use a free form report or format it so it "looks" like two separate reports.
Maybe the 7.1.1 PDF painter does this???
The only other way I can think of would be to code a script within Adobe Acrobat (not the reader), but I assumed the question was relating to just using WF.
Looking at the poll at the top ofthe forum, it would appear that there are not many prod installations of 7.x yet.
My client is still holding off due to certain "features" in various components plus the recommendation to await the first patch (and now the second for DS).
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
This is a cool technique (yet limited) to get a very small PDF report to print a page side by side. Have not pushed it to the limites, but thought this was worth sharing!
SET ONLINE-FMT = PDF TABLE FILE EMPLOYEE PRINT LAST_NAME CURR_SAL BY DEPARTMENT PAGE-BREAK HEADING "PAGE <TABPAGENO" ON TABLE SET STYLE * UNITS=IN, PAGESIZE=LETTER, PAGEMATRIX=(2 1), ELEMENT=(3.5 8.0), MATRIXORDER=VERTICAL,$ TYPE=REPORT, SIZE=8,$ TYPE=HEADING, STYLE=UNDERLINE, COLOR=BLACK, LINE=1,$ ENDSTYLE END
Happy Thanksgiving everyone! Carol
WebFOCUS 7.6.6/TomCat/Win2k3
Posts: 428 | Location: Springfield, MA | Registered: May 07, 2003
hi all, thanks for the responses. sorry for not mentioning the output format. its PDF. actually one out of 3 reports is a graph. so, we have displayed the 2 tabular reports one below the other by using compound reporting and graph is saved as GIF image and we can display the image anywhere. so we have placed the graph image adjacent to the first table. now first table and graph are side by side and 2nd table is below.
dharma ------------------ WF v 7.1.1 OS - Win XP Output: PDF, EXL2K
Posts: 41 | Location: Boston | Registered: August 17, 2005