Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

invoking BO through JSP/ASP

Status
Not open for further replies.

leobindaaz

Programmer
Oct 5, 2003
12
IN
Hi

I want to invoke BO through JSP/ASP.
Please provide the solution as soon as possible

Regards

Vikas
 
Just try this. You amy need to modify the code little bit

Dim test As BOQueryServer
Application.ExchangeMode = boUserMode
Dim docu As Documents
Set docu = Application.Documents
Dim doc As Document
Set doc = docu.Open("doc name")
doc.Visible = True
 
Hi

I am able to open BO through JSP but the issue is that i am not able to pass the prompt parameters through jsp. I want to pass some filter criteria through jsp which are the prompts in report.

Regards

Vikas
 
Do you have documentation for the SDK.

If so, you should be reading up on OpenDocument.jsp.

If you don't have the documentation, you should get it. It can be downloaded from the BO tech support site.

**Jumping on Soapbox**
If you or someone in your company doesn't have access to the documentation, that means you aren't licensed for the Developer Suite. From a licensing perspective, you have to own a Developer Suite license in order to build any solution that makes calls into the WebI API. Also, all users of your solution must be licensed WebI users.

None of this may apply to you, but it's been bugging me lately. There have been alot of posts by folks who don't seem to have access to support or documentation. That generally means that they don't have proper rights to use the software.
***Jumping off Soapbox**

Steve Krandel
Knightsbridge Solutions
formerly BASE Consulting Group
 
Hi I am a licenced user to the software. I am also accessing the webi. I am working a lot on the webi. I am able to open the page through webi. the issue is i also have to pass the BO prompt parameters through JSP so that the user may not see the prompt.

regards

vikas
 
As I suggested, you need to look at the OpenDocument method. This is what is used to pass parameters invisibly to a report.

Steve Krandel
Knightsbridge Solutions
formerly BASE Consulting Group
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top