Hello everyone,
We are on-premise and just updated a testing environment from 2024.2 to 2025.2.
I have been trying to debug a standard SSRS for hours now. Could really use your help!
The issue is with the ARForm report style, the standard one. When we try to print it, we get an error related to a new RptParameter named “DetailCarbonCost” that was added in a recent version. Carbon Cost is a module which we do not have the license.
Ice.Core.SsrsReporting.SsrsCaller.SsrsException: The SSRS server returned the status code 500 (InternalServerError) with the following error text:
System.Web.Services.Protocols.SoapException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Query execution failed for dataset 'RptParameter'. ---> System.Data.SqlClient.SqlException: Invalid column name 'DetailCarbonCost'.
I was wondering, how does Epicor dynamically generates its RptParameter_GUID tables? Where are the columns defined? Can’t find anything in the Report Data Definition. I guess these parameters are not part of the RDD?
SELECT TOP (1000) [Company]
,[ARInvFormReportID]
,[AssignLegalNumber]
,[BeginDate]
,[BeginNum]
,[CalledFrom]
,[CurGroup]
,[CustIDList]
,[CustList]
,[DCList]
,[DemandContractList]
,[Description]
**,[DetailCarbonCost]** // Missing parameter here!
,[DocTypeOption]
,[DraftCopy]
,[DspDocCopyNum]
,[EnableAssignLegalNumber]
,[EnableUseCopyNumInARInv]
,[EndDate]
,[EndNum]
,[InvoiceNum]
,[InvoiceStatusOption]
,[PrintInventoryAttributes]
,[PrintNPost]
,[PrintStatusOption]
,[TH_IsService]
,[THHeadOfficeOrBranch]
,[THPlaceOfBusiness]
,[TranDocTypeID]
,[TransOptions]
,[TWCompInvPart1]
,[TWCompInvPart2]
,[TWCompInvPart3Back]
,[TWCompInvPart3Front]
,[TWEInvPrizeCollection]
,[TWEInvTransDetails]
,[Vouchering]
,[ReportCultureCode]
,[ReportCurrencyCode]
,[ThousandsSeparator]
,[DecimalSeparator]
,[DecimalsGeneral]
,[DecimalsCost]
,[DecimalsPrice]
,[GlbDecimalsGeneral]
,[GlbDecimalsCost]
,[GlbDecimalsPrice]
,[DecimalsQuantity]
,[CompanyExecutionTime]
FROM [DemoUpdate_SSRSData].[dbo].[RptParameter_6063F89B91044AC2A554AA23A0C5E3A9]
As always, I appreciate your help ![]()