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.
Is there a way to have one drill-down link run two separate focexecs, each within it's own IFRAME? Below is a sample of the code that I intially tried. Obviously, this method did not work, but this should provide an idea of what I am trying to do.
I tried a few different methods to to to get this to work, but was unsucessful. From what I can tell, the target for a drill-down must be controlled from the parent report, therefore only one target can be specified per link.
Does anyone have any ideas on how I could get this to work?
frikst, you've got 2 things going on, it seems. first, you've got 2 drilldowns from one element...which is fine.. but you've got to use the multi-drill feature. TYPE=DATA,COLUMN=ACCOUNT_NO, DRILLMENUITEM='first choice is transh1',focexec=TRANSH1(ACCOUNT=ACCOUNT_NO), DRILLMENUITEM='or second choice balance', focexec=balance1(ACCOUNT=ACCOUNT_NO), $ .. then the second issue is different targets. I've gotten different targets to work, but only with single drilldowns, not multiple choice, and from different elements. If my source fex result appears in, say, a banner frame, when i load the frameset i have automatically run a fex..then if user clicks one thing in that banner, say CAR, then the drilldown posts to "leftmainframe" and if user clicks , say, MODEL, then the dd posts to the "rightmainframe". That's doable, but your situation is more delightfully complex. I've never done multiple targets from a multidrill. You can write your own drilldown... you do it by defining a variable that is a big text string, containing the html code for a drilldown, and embedding the variable value. So when it prints out in your report, lo and behold its a link. You can specify target that way, as well as stuff like naming a new window, and controlling its size and location. If that interests you, holler back, and we'll help you with it. Francis's method , running one fex, from one single drilldown, with 2 output tables made by that single fex, and them bringing back both output tables... TABLE FILE CAR... ON TABLE HOLD AS MYTAB1 FORMAT HTMTABLE END TABLE FILE CAR... ON TABLE HOLD AS MYTAB2 FORMAT HTMTABLE END -RUN -HTMLFORM BEGIN !IBI.FIL.MYTAB1; !IBI.FIL.MYTAB2; -HTMLFORM END this is the simplest form of the output containing both tables. As Francis says, you can if you want, surround these two output tables with all sorts of html code...make them 2 cells in a single table row, make them contents of two iframes...whatever...
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
<html>
<!-- This HTML provides various IFRAME sections each with an execution string to a particular focexec. -->
<!-- This provides the ability to display graphs side by side within the HTML page in a manner that is not easy (if at all possible!) within WebFOCUS. -->
<head><title>Multiple Frame Report</title></head>
<body>
<iframe id="report1" src=!IBI.AMP.URL_STR1; border="0" frameborder="0" width="1535" height="340" style="position:absolute;left:0px;top:0px"></iframe>
<iframe id="report2" src=!IBI.AMP.URL_STR2; border="0" frameborder="0" width="1535" height="340" style="position:absolute;left:0px;top:340px"></iframe>
</body>
</html>
which uses the amper variable strings created in multiple_frame_report to run a single fex twice but in different iframes. The fex contains
-* File multiple_frame_report1.fex
-DEFAULT &Country = 'ENGLAND' ;
TABLE FILE CAR
SUM DCOST
RCOST
BY COUNTRY
BY CAR
BY MODEL
WHERE COUNTRY EQ '&Country';
END
-RUN
Edited because the content had been "Mabelised" This message has been edited. Last edited by: Tony A,
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