HI Epicor Community,
I’m trying to develop and test an SSRS Report, but it seems after I upload it and try generate, I got an error, cant find the exact error as shown below.
below is my query dataset expression
=“SELECT T1.ReqNum,
T1.RequestDate,
T1.ShipName,
T1.ShipAddress1,
T1.ShipAddress2,
T1.ShipAddress3,
T1.ShipCity,
T1.ShipState,
T1.ShipZIP,
T1.ShipCountry,
T1.CommentText as ReqHeadCommentText,
T1.ShipToConName,
T1.ShipCountryNum,
T1.StatusType,
T1.Calc_CurrentAction,
T1.Calc_DispatcherName,
T1.Calc_RequestedBy,
T2.TranType,
T2.ReqLine,
T2.LineDesc,
T2.IUM,
T2.DocUnitCost,
T2.Taxable,
T2.CostPerCode,
T2.PartNum,
T2.CommentText as ReqDetailCommentText,
T2.RevisionNum,
T2.DueDate,
T2.JobNum,
T2.CurrencyCode,
T2.XOrderQty,
T2.Calc_PartClass,
T2.Calc_VendorID,
T2.Calc_VendorName,
T2.Calc_AttributeSetShortDescription,
T3.OnhandQty,
T4.DemandQty,
T4.WarehouseCode
FROM ReqHead_” + Parameters!TableGuid.Value + " T1
LEFT OUTER JOIN ReqDetail_" + Parameters!TableGuid.Value + " T2
ON T1.Company = T2.Company AND T1.ReqNum = T2.ReqNum
LEFT OUTER JOIN PartBin_" + Parameters!TableGuid.Value + " T3
ON T2.Company = T3.Company AND T2.PartNum = T3.PartNum
LEFT OUTER JOIN PartWhse_" + Parameters!TableGuid.Value + " T4
ON T3.Company = T4.Company AND T3.PartNum = T4.PartNum AND T3.WarehouseCode = T4.WarehouseCode "
need your expertise on this