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!

Passing paramers through a URL

Status
Not open for further replies.

strom99

MIS
Nov 28, 2000
126
US
Does anyone know if it is possible to pass multiple parameters (up to 10) through a URL using BO 5.1? We are currently using Crystal Reports 8.5 to do this in other applications but may consider using BO if it is possible.
 
It is possible to pass parameters to a businessobjects report viewed through webintelligence,

Below is an extract from an ASP page which passes in parameters which are used to open a full client report in webi and refresh with those parameters


sFileName = Server.HTMLEncode(Request.Form("Reports"))
sPeriod = Server.HTMLEncode(Request.Form("Periods"))
sType = Server.HTMLEncode(Request.Form("srpttype"))
sRegion = Server.HTMLEncode(Request.Form("Regions"))
sDealer = left(sFilename,5)


sPrompt1 = Server.URLEncode("Enter Period Id as YYYYMM")
sPrompt2 = Server.URLEncode("Which Dealer?")
sPrompt3 = Server.URLEncode("Enter text to search for")


Response.Redirect " & sPrompt1 & "=" & sPeriod & "&lsS" & sPrompt2 & "=" & Server.URLEncode(sFilename) &"&lsS" & sPrompt3 & "=%"
 
Does this mean each user would need the full client on their desktop?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top