(/openDocument.jsp) is not available. 404 -/openDocument.jsp

I am opening a detailreport with opendocument function in Webi XI3.1 and getting this error

HTTP Status 404 - /openDocument.jsp
type Status report

message /openDocument.jsp

description The requested resource (/openDocument.jsp) is not available.
Apache Tomcat/5.5.20

Can someone help me please :hb:


Bill13 (BOB member since 2009-12-08)

What is the URL that you are using?


joepeters :us: (BOB member since 2002-08-29)

Here is the URL:

="<a href=“http://bobjccdev:8080/
openDocument.jsp?&iDocID=10501&sDocName=Detail&sT
ype=wid&&lsSEnter+St
ate:=”+Replace([State];" “;”%20")+"">"+[State]+""


Bill13 (BOB member since 2009-12-08)

Try

="<a href=\"http:/OpenDocument/opendoc/
openDocument.jsp?&amp;iDocID=10501&amp;sDocName=Detail&amp;sT
ype=wid&amp;&amp;lsSEnter+St
ate:="+Replace([State];" ";"%20")+"\">"+[State]+"</a>"

Joe


joepeters :us: (BOB member since 2002-08-29)

Joe thank you very much boss for replying
It is now opening report but for detail report it is asking to select value from List again instead of taking clicked value and hit it to detail report.


Bill13 (BOB member since 2009-12-08)

You have two ampersands prior to the lsS parameter – you only need one.

Use “%3A” instead of “:” in “Enter+State:”.

Use URLEncode instead of Replace. It’ll translate all URL-unfriendly characters.

The lsS parameter is used with single-select prompts. If the “Enter State”: prompt in the target report is a multi-select prompt, then use lsM instead.

You don’t need sDocName if you’re using iDocID.

="<a href=\"http:/OpenDocument/opendoc/openDocument.jsp?&amp;iDocID=10501&amp;sType=wid&amp;lsSEnter+State%3A="+URLEncode([State])+"\">"+[State]+"</a>"

joepeters :us: (BOB member since 2002-08-29)