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.
HI all, WE have recently migrated to a new structure in our application i.e all HTM files reside in MRE and all corresponding FEX files would reside in EDASERVE. Everything works fine now, except one problem which I am stuck into this.. From the hyperlink of output of one of my HTML output I am calling a another HTM files, as this HTM files is in MRE it somehow not working. Here is code which i was trying in the Fex file
Same URL runs when i directly paste in browser,but this is not working from the fex file. Does someone has worked?please suggest any help would be highly appreciated..
Thanks.This message has been edited. Last edited by: Kerry,
WebFocus7.6.2, WebFocus 7.1.1,Windows HTML, PDF and Excel
You have to split the URL up into multiple parts, it's too long ans must span more than one line. The best way to do this is to NOT build a single variable that contains the whole URL, but separate it into individual parameters, one per line:
-SET &ECHO=ALL;
-DEFAULT &MR_fex = 'app/testrepo.htm';
-DEFAULT &MR_folder = '#testyrsaxhlg';
-DEFAULT &MR_domain = 'francism/francism.htm';
TABLE FILE CAR
SUM
SALES
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA,COLUMN=COUNTRY,
-*URL=http://xxxyyy666777.prod.net:8080/ibi_apps/WFServlet?( \
URL=/ibi_apps/WFServlet?( \
IBIMR_action = 'MR_RUN_FEX' \
IBIMR_sub_action = 'MR_STD_REPORT' \
IBIMR_drill = 'RUNNID' \
IBIMR_fex = '&MR_fex' \
IBIMR_folder = '&MR_folder' \
IBIMR_domain = '&MR_domain' ),
TARGET='_blank', $
ENDSTYLE
END
-RUN
If the server is the same as where the fex is executed you can use the shorter URL (without server name), if it's on a different server, use the longer URL (with server name).
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Tons of Thanks Francis for your trick...!! It works very well...... I tried every possible option,but I didn't thought of the option suggested by you......
My Report is running very fast now.....
Credit is to you Francis........ Thanks again..... Greatly appreciates you !!!!
Anmol....
WebFocus7.6.2, WebFocus 7.1.1,Windows HTML, PDF and Excel