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 a initial page with links to other pages?
Like "home page" with links to the other pages in the portal. Eg: We have the following fex file in one portal and when we click on the car name( column 2), another portal pop up with the car details.
TABLE FILE CAR SUM SALES
BY CAR BY MODEL WHERE CAR EQ '&CAR'; ON TABLE SET PAGE-NUM NOLEAD ON TABLE PCHOLD FORMAT HTML ON TABLE NOTOTAL ON TABLE SET HTMLCSS ON END
Fex file for 2nd portal:
TABLE FILE CAR SUM SALES BY COUNTRY BY CAR
ON TABLE SET PAGE-NUM NOLEAD ON TABLE PCHOLD FORMAT HTML ON TABLE NOTOTAL ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * -INCLUDE IBFS:/WFC/Repository/Aerotek/Common/Style/aerotek_rpt.sty $ TYPE=DATA, COLUMN=N2, FONT='ARIAL', SIZE=9, WRAP=OFF, SQUEEZE=.6, JUSTIFY=CENTER, TARGET='_blank', FOCEXEC=IBFS:/WFC/Repository/Test/Car_drill.fex( \ CAR = N2 \
),
$ ENDSTYLE END
Thank you in advance.This message has been edited. Last edited by: MeM,
A drill from one page to another page within the same portal can be achieved using the following drilldown syntax (obviously the column reference etc. would be relevant to your code) -
Originally posted by Tony A: Just a note to add that this is portal navigation specific, therefore it will not function outside of a portal page - i.e. when run from App Studio.
You will also need to add a JSURL to your report -
SET JSURL = '/ibi_apps/tools/portalcanvas/iframeinterface.js'
T
Thank you Tony. But I want drill down from one portal to another not within the same portal.
This worked for me in 8.2.02 when I made sure that 'page1' and 'page2' were each page's Name not the Title. You have to look at the pages properties for this. If the portal page's properties shows a .page at the end like this:
Name Overview.page
Just use the 'Overview' part of the name like this:
Seeing as how you're on 8202, you are able to use the new "V4" portal architecture they've added. As you've seen, the portal pages you create have a .page extension on them. From what I was taught by a guy in the know at IBI about this, the pages no longer "belong" to a specific portal anymore. So, you could very well reference one page from another using (most likely) the method dbeagan has outlined. I haven't tried it myself, but it looks like it could do the trick. As for the target of the drill, I would think you could merely have it open in a new window (target='_blank'). I'm not sure if the portal container itself supports the ability to hot-swap pages on top of one another, but wouldn't see why it couldn't be done if you first ensure your .page houses a responsive panel container that can run an AppStudio HTML page with a reference to the new .page and hidden inputs with params (my workaround brain thinking).
8.2.02M (production), 8.2.02M (test), Windows 10, all outputs.
Posts: 1113 | Location: USA | Registered: January 27, 2015
IB guy said its not possible. Does anybody have any alternate idea how I can implement this? I was thinking that the drill down report open up in a new tab of the same portal but that is also not possible. Is there any other way I can complete my project?
I think the closest thing you can get is to use the Drill Down Type of Refresh BI Portal and have a second panel on the same portal tab where the results will display.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
Thank you Chuck. Since there are 4-5 reports on the second panel, it will be difficult to display them on the same tab. Is it possible to have second tab on the same portal with all those reports?
Just got our 8202 test environment up and running. About to dig into the new WF Designer to see what it can and can't do. Did see mention of what Chuck was saying that you can do accordion and tabbed containers within the docs. I'd search there for some help as well. Not sure if 8202 comes with new samples beyond what they had via the Retail Samples domain content, but will know soon enough. 8202 documentation link
8.2.02M (production), 8.2.02M (test), Windows 10, all outputs.
Posts: 1113 | Location: USA | Registered: January 27, 2015
It is not something that I can post. When you are in the portal designer under the Insert menu option there are icons for a tab container and accordian container and then you drop your content into them. It is pretty straight forward.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
Originally posted by Tony A: A drill from one page to another page within the same portal can be achieved using the following drilldown syntax (obviously the column reference etc. would be relevant to your code) -