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 created an excel report fired from a launch page. In that report, I have a link to a drilldown report that l'd also like this output to display in excel format.
I get the drilldown to diaplay a report, but it is in HTML format...is HTML format the only format permitted to display in WF? I am currently working in rel. 7.4.
Any suggestions?
Thanks! This message has been edited. Last edited by: Tamra,
If your launch page has the output format able to be selected from the three main ones (most shops do this) then remember to pass the format in the drill down.
For instance, say I have a launch page that has something like this -
When I submit the form and my fex runs, it will have access to the variable &WFFMT. I use this is my fex like this -
(abridged)
ON TABLE PCHOLD FORMAT &WFFMT
....
ON TABLE SET STYLE *
....
TYPE=DATA, COLUMN=somecolumn, FOCEXEC=drilldownfex(..... WFFMT=&WFFMT), $
....
ENDSTYLE
I again use the ON TABLE PCHOLD FORMAT &WFFMT in my drilldown fex. So that whatever format I chose in this first instance is honoured all the way through the report sequence.
Alex,
The Excel (and PDF) "problem" is down to the fact that the incoming data stream from WF is redirected to the appropriate browser app. You will also notice that you have to go back two to get to the original report (javascript go.history(-1) I think).
T
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
Of course it will work hard coding the required format within the drill down however, I was attempting to encourage a more flexible approach by using &WFFMT (user output format in the GUI) and demonstrating the method. If you combine this with a DEFAULT value for &WFFMT and you do not offer the choice to the end user in your launch screen, you will still get the same effect.
T
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
I've found that getting the drill down to work in excel only seems to function if the excel is opened within the browser as in IE, doesn't in firefox which opens excel. Of course this is with no additional fancy codeing as others have mentioned.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Hmm.. Indeed. I can't remember why drilldown was NOT working.
-* File CAR_EXL2K_DRILL.fex
TABLE FILE CAR
PRINT
CAR
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=DATA,
COLUMN=N1,
FOCEXEC=CAR_EXL2K_DRILL,
$
ENDSTYLE
END
Nothing too hard
WF 7.6.2, WinNT/2K, MSSQL 2K, MSOLAP 2K, BID
Posts: 79 | Location: Moscow | Registered: April 27, 2007
TRY THIS.... TABLE FILE CAR BY CAR.COMP.CAR BY CAR.ORIGIN.COUNTRY ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT EXL2K ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=DATA, COLUMN=N1, FOCEXEC=IBFS:/WFC/Repository/eapqp206/~adevend1/Across_columns_hide_2.fex, TARGET='_blank', $ ENDSTYLE END