I have a report that shows our help desk's performance metrics. Some of these metrics come from our CRM database, and some come from our ACD database. This report is a main report with subreports gathering data from different MS SQL servers.
When calling a report with only one data source, the ASP code below works perfectly, but when calling reports with multiple data sources, it is prompting for multiple sets of login information.
My ASP code for calling the report is:
<%reportname = "report.rpt"%>
<!-- #include file="AlwaysRequiredSteps.asp" -->
<% clientDoc.databaseController.logon "username","password" %>
<!-- #include file="CrystalReportsInteractiveViewer.asp" -->
Where AlwaysRequiredSteps.asp and CrystalReportsInteractiveViewer.asp come from:
Is it possible to set the username & password for each subreport or data source?
Joe Van Norman
ABS Associates
When calling a report with only one data source, the ASP code below works perfectly, but when calling reports with multiple data sources, it is prompting for multiple sets of login information.
My ASP code for calling the report is:
<%reportname = "report.rpt"%>
<!-- #include file="AlwaysRequiredSteps.asp" -->
<% clientDoc.databaseController.logon "username","password" %>
<!-- #include file="CrystalReportsInteractiveViewer.asp" -->
Where AlwaysRequiredSteps.asp and CrystalReportsInteractiveViewer.asp come from:
Is it possible to set the username & password for each subreport or data source?
Joe Van Norman
ABS Associates