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.
Trying to use a FRAMESET. The FRAMESET resides in a FOCEXE that is called from a launch page. First frame is header with pertinent information.
Second frame is FOCEXE where data can be added/updated.
The header is htm format, no problem. Issue: The second frame with the called FOCEXE displays the FOCUS INCLUDE statements, but the HTML tags (textboxes, radio buttons...) display properly.
So, what's up with using framesets?
Any direction or input would be greatly appreciated.
Thanks for the input Roland, but the result I am looking for is to run the fex inside the frame, ...unless there is another way to run an fex inside a frame... I am open.
The first frame is a html header. The second frame is an fex that has to run inside the frame.
I have attached the code for the page with the frameset that calls the header html(ok) and the dummy html(not ok). I am trying to get the dummy to run and display the 'app/ratfrmts.fex' in the second frame. NEW PAGE 1
New Page 1
<script> function fill() { alert("???"); }
Here is the dummy page (testpage.htm) calling the ratfrmts.fex
TEST PAGE
<script>
No success on calling the dummy: The page cannot be found
Both NEW PAGE 1 and dummy are html forms.
Once again, any direction or input is greatly appreciated.
Many, many thanks in advance,
eckThis message has been edited. Last edited by: <Mabel>,
The CGI call is coded slightly differently than the way you had. Also, this is only going to work if the URL in the browser is a server based URL, not a file based one. By this I mean it should look like
eck, i think its the word '.fex' in your call. I launch fexes from framesets (selfserv, not mre)all the time; here's an example of my code (my fex is named invrep10) [frame name="main" src="http://grwf01/cgi-bin/ibi_cgi/webapi. dll?IBIF_ex=invrep10&COMPANY=MYCOMP&UNITS=ON& DOLLARS=ON&ONHAND=ON&ATSH=ON&ATSL=ON" target="_self" scrolling="auto" border="0" style="border-left-width: 1; border-right-width: 1; border-top: 1px ridge #DCE3EE; border-bottom-width: 1"> [/frameset>This message has been edited. Last edited by: <Mabel>,
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
The syntax of using app/name.fex is used by Managed Reporting (MRE). If that is the case, your URL is missing several important paramters. You need to specify the domain location (IBIMR_domain), folder (IBIMR_folder), the action to call MRE (IBIMR_action), where the report is located (IBIMR_sub_action), and the fexname in MRE (IBIMR_fex)