A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
Calling ExcelHandler to populate the Data from Reporting Service
I am calling excel Handler to call a Reporting Service Report directly from the Report Link like this:
var MySheet= ExcelHandler.Workbook.Worksheets.Add();
MySheet.Name = MyDataSheet;
string webcn =
$@"https://www.abcz.com?ReportPage&reportid={reportId}&template=123&ReportId=123";
MySheet.QueryTables.Add(Connection: "URL;" + webcn, Destination: MySheet.Cells[1, 1]);
Earlier this code was working fine. But now in my application Single Sign On is implemented. After that it is not working. May be due to Authentication. Is there any way we can call this Report by passing Authentication Id and Pwd.
SQL Server Reporting Services
Microsoft 365 and Office | Development | Other
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.