Skip to main content

Reports configuration manager Error

If I have uninstalled and reinstalling the reports ,in reports configuration manager it showing error
when I have uninstalled and reinstalling the reports ,in reports configuration manager it showing error

Solutions:

1.delete the ReportServer database from SQL server or name the database name different from the old one

2.drop the reportserver db in server put the snapshot of the error after adding the new DB name in rs config or Do not create new report server. Select the 2nd option of configuring existing database and select Reporting server as the database

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...