Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]Drilldown in Excel from Excel Report

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED]Drilldown in Excel from Excel Report
 Login/Join
 
Master
posted
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! Idea

This message has been edited. Last edited by: Tamra,


Tomsweb
WebFOCUS 8.1.05M, 8.2.x
APP Studio, Developer Studio, InfoAssist, Dashboards, charts & reports
Apache Tomcat/8.0.36
 
Posts: 573 | Location: Baltimore, MD | Registered: July 06, 2006Report This Post
Expert
posted Hide Post
Make sure that your drilldown program has FORMAT EXL2K in it as well. The drilldown program does not inherit its format from the calling program.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Gold member
posted Hide Post
We also do not found a way to drilldown from Excel to Excel.

We were not tried hard so.
But this can be the same problem as with multiple Excel reports in one time - only one is possible.

Alex


WF 7.6.2, WinNT/2K, MSSQL 2K, MSOLAP 2K, BID
 
Posts: 79 | Location: Moscow | Registered: April 27, 2007Report This Post
Expert
posted Hide Post
Tom,

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 -
(abridged)
<select name="WFFMT">
  <option value="HTML">Display Output</option>
  <option value="PDF">Printable Output</option>
  <option value="EXL2K">Data Sheet Output</option>
</select>

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, 2004Report This Post
Expert
posted Hide Post
Even if you hard-code the format it should work. I tested it before I did my earlier post. I was using our 762 version on AIX.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Expert
posted Hide Post
Ginny,

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, 2004Report This Post
Virtuoso
posted Hide Post
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, 2004Report This Post
Gold member
posted Hide Post
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 Big Grin


WF 7.6.2, WinNT/2K, MSSQL 2K, MSOLAP 2K, BID
 
Posts: 79 | Location: Moscow | Registered: April 27, 2007Report This Post
Gold member
posted Hide Post
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


8202, 8105M, 7.7.03
 
Posts: 79 | Registered: June 12, 2012Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]Drilldown in Excel from Excel Report

Copyright © 1996-2020 Information Builders