I have been generating SSIS reports in VS2013 and importing them into CRM 2013 with no problems, however when trying to do the same in CRM2015 I am getting very strange outcomes
I am logged into CRM as the Administrator, and the report is imported in under this profile
The report is a custom invoice report
If the report is generated using this query ;
SELECT CRMAF_FilteredInvoice.accountidname
FROM [dbo].[FilteredInvoice] AS CRMAF_FilteredInvoice
It is rendered and shows the accountidname with no problem BUT when using this query;
SELECT CRMAF_FilteredInvoice.accountidname
,B.new_CompanyName
,B.Address2_Line1
,B.Address2_Line2
,B.Address2_Line3
,B.Address2_StateOrProvince
,B.Address2_PostalCode
,CRMAF_FilteredInvoice.datedelivered AS 'InvoiceDate'
,CRMAF_FilteredInvoice.invoicenumber
FROM [dbo].[FilteredInvoice] AS CRMAF_FilteredInvoice
LEFT JOIN [dbo].[Account] AS B
ON CRMAF_FilteredInvoice.accountid = B.AccountId
I get the following
*This post is locked for comments