Calling Crystal report from BO XI server using ASP
Hi,
I want call Crystal reports from Business Object XI server using ASP.NET.
I want to pass the Parameters to Stored procedure.
If anyone knows please advice me or send me the sample source code.
Calling report from BO 11 code
Dim serverName As String = "10.1.249.9"
Dim mySessionMgr As SessionMgr = New SessionMgr
Dim myEnterpriseSession As EnterpriseSession = mySessionMgr.Logon("Administrator", "rptAdmin", serverName, "Enterprise")
Dim myEnterpriseService As EnterpriseService = myEnterpriseSession.GetService("Infostore")
Dim myInfostore As InfoStore = New InfoStore(myEnterpriseService)
Dim queryString As String = "Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS " _
& "Where SI_PROGID='CrystalEnterprise.Report' " _
& "And SI_NAME ='ChequeReturns"
Thanks,
Rajan
Rajan
|