Focal Point
How can an image Map call fexes w/in MR?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1081046542

September 06, 2007, 02:43 PM
<M_RIOS75>
How can an image Map call fexes w/in MR?
Background:
I am building an image map (located within MR available on Dashboard) of the U.S. Depending on which state they click on, will determine what state the report is run for.

I have the map working in that it calls the fex and runs the report, issue here is I can only get the report to run if the fex is located within the app path. I am using the following url structure for California:
href="http://server:8088/ibi_apps/WFServlet?IBIAPP_app=foldername&IBIF_ex=fexname&ampervalue=CA

I would like to contain the image map (launch page) and fex within MR for security reasons. Is there a different URL structure I can use to call a fex within MR to make this function?
September 06, 2007, 04:53 PM
Francis Mariani
Marvin,

1) Add the fex to MRE
2) Publish the fex to create a launch HTML page
3) Open the HTML page in a text editor to see what parameters have been setup in the launch form
4) Use the same form parameters in your image map

Alternatively,

3) Run the fex from the published launch page and take note of the URL of the fex's window - this is the URL to use in your image map.


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
September 06, 2007, 05:41 PM
<M_RIOS75>
I used the parms it generated at the end of the file and threw it into a URL. For some reason I could not run the HTML it generated but luckily I was able to throw the parms into a URL format WebFOCUS liked. It is now able to call the fex within MR.

Thanks Francis!
September 07, 2007, 10:46 AM
<M_RIOS75>
Looking at this process I've noticed something that raises some concern. Using the URL that calls the fex within MR doesnt need to be authenticated. There is no prompting of credentials.. I can email this link to anyone on the network and they can run the report..

Is there a security setting I may be missing or is this truly an MR workaround?
September 08, 2007, 10:06 AM
susannah
Marvin, can you update your signature so that we know what versions/platforms/products you're using?
Are you making your own image maps , in front page for ex, or are you using some other tool, and if so, which?
ARe you using wf 7n?.
Publish command in 7 gets VERY different results from publish command in prior versions, very developer-unfriendly.
I've written my own image maps and they work like any other drilldown. From w/in mre, there's just more stuff that has to go in the http string. But with the new publish command, its very hard (strike that..impossible) to figure out what that actually is.




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
September 11, 2007, 01:35 PM
Susan Trommer
Hi susannah and Marvin, the underlying complexity I believe susannah referred to is related to the Amper Auto-prompting facility default design which has undergone enhancements in Rel 71 and 76.
On the info related to being able to run the MR report without MR credentials this is expected behavior because the option to create the publish page outside the MR repository (writes the file to the /ibi_html/publish directory under the WF Client) adds an extra parameter to the URL. The specific parameter coded in the HTML publish page I'm referring to is
.
This security related topic has a life of its own but when Rel 764 is available be sure to review the NF and Upgrade Considerations documentation for information on new WF Client configuration parameters for functionality related to MR Auto Signon and running MR reports anonymously.
Back to the 'how to' question for coding a drill down to an MR report. The parameter that is needed on the URL is IBIMR_drill. IBIMR_drill tells WF client the request is a drill down. I wrote an article for the WebFOCUS Newsletter (Tech Summit 2007 Edition) explaining all the technical nitty gritty details with a well commented code example. The article title is 'Drilling Down to a MR report from a ReportCaster distributed report'. The information isn't specific to ReportCaster distributed reports. It covers what is needed to set the context of running an MR report as a drill down when connected or disconnected from the context of an WebFOCUS MR environment.
Link to the article on Information Builders Tech Support Advanced Search is:
http://www.informationbuilders.com/new/newsletter/7-4/06_Trommer.html
The link will not work until you logon to the Tech Support site. If you have difficulty using the link just use the Advanced Search option. Unselect all documents and then select just 'WebFOCUS Newsletter' and put in the title of the article ''Drilling Down to a MR report from a ReportCaster distributed report'.
Hope this helps.


Susan Trommer
Information Builders
September 11, 2007, 01:39 PM
Susan Trommer
Little glitch on my last post as I copied the actual HTML so it was lost. The parameter is:
IBIMR_drill=RUNNID'


Susan Trommer
Information Builders
September 14, 2007, 04:25 PM
<M_RIOS75>
Thanks! Its cleared up a lot of confusion