Using Microsoft Dynamics GP Business Intelligence deployment utility to deploy custom SSRS reports
Using Microsoft Dynamics GP Business Intelligence deployment utility to deploy custom SSRS reports - Part 2 In the previous installment , I outlined a technique to deploy your custom SQL Reporting Services reports using the standard Business Intelligence deployment utility provided by Microsoft Dynamics GP (Administration | Setup | System | Reporting Tools Setup). In this installment, I will provide the scripts needed to update the Microsoft Dynamics GP system database tables, sySrsReports and sySrsReportDataSources, respectively. -- Created by Mariano Gomez, MVP -- This code is licensed under the Creative Commons -- Attribution-NonCommercial-ShareAlike 3.0 Generic license. declare @objectId uniqueidentifier; declare @rptContent varbinary; declare @reportName varchar(255); -- custom report name information set @reportName = 'Contract Deferred Revenue Detail Report'; select @rptContent = Content from ReportServer.dbo.Catalog where Name = @reportName; -- setup a new GUID...