Anyone else seeing issues with the report builder in v5 (5049)?
Specifically, if editing a value in the Criteria Pane, before edit, the code looks like this:
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Processor As Processor1,
tblAssets.NrProcessors As NrProcessors1,
tblSqlServers.serviceName,
tblSqlServers.displayVersion,
tblSqlServers.skuName,
tblSqlServers.version
From tblAssets
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join tblSqlServers On tblAssets.AssetID = tblSqlServers.AssetID
Order By tblAssets.AssetUnique,
tblSqlServers.serviceName
It then updates the Code to include that field twice in the Select statement (tblAssets.IPAddress in this case)
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.IPAddress,
tblAssets.Processor As Processor1,
tblAssets.NrProcessors As NrProcessors1,
tblSqlServers.serviceName,
tblSqlServers.displayVersion,
tblSqlServers.skuName,
tblSqlServers.version
From tblAssets
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join tblSqlServers On tblAssets.AssetID = tblSqlServers.AssetID
Where tblAssets.IPAddress Like '%199%'
Order By tblAssets.AssetUnique,
tblSqlServers.serviceName
And then it gives error messages like this one (see attached). It happens enough, that I know when I've edited int he middle pane, to go and clean up the SQL query, but it's annoying.
Also, it seems like if you remove an output option in the top pane (uncheck Domain for example in this report), it says it has to update the query, you click save and run and it still has the Domain field. It requires multiple times to uncheck.
I'm fairly proficient with editing the code by hand and can fix the queries, but just wondering if there are any others seeing these issues and if there are any plans for fixing it? I understand too that the report builder is third-party, so maybe discussing it with them?
IE 9 is the browser I'm doing the editing in.