English 中文(简体)
无法从2009年起在SSRS中展示扩展数据类型
原标题:Cannot display Dimension Extended Data Types in SSRS from AX 2009

如果你利用从2009年安东和安东民主军(EmplTableListPage)中修建的电离层设备,并试图与安纳苏特派团一道编写一份特别安全报告,并使用实地报告(或这一问题的任何方面),那么2008年视力演播中的报告将正确进行。 在你向安保部服务器部署报告后,它将没有出现类似下列错误:

 An error has occurred during report processing. (rsProcessingAborted)
Query execution failed for dataset  Dataset1 . (rsErrorExecutingCommand)
The AX query string  SELECT EmplTable.1.Dimension[1],EmplTable.1.EmplId,DirPartyTable.1.Name FROM EmplTableListPage  is invalid. The valid format is  SELECT [fields] FROM [AX query name] , where [fields] can be either  *  or a comma separated field list.

如果你从报告的内容中删除了3.1个领域,重新解释错误,报告正确无误。

我曾尝试在AOT的盘点中增加一个领域,并具体增加第1部分,但两者都没有发挥作用(错误信息)。

在SSRS报告中,我如何显示从各方面的数据? 以及它为什么在“视觉”演播室工作,而不是在“宇宙航空研究开发机构”或“报告管理员网站”工作?

最佳回答

According to Microsoft in their What s New in Microsoft Dynamics AX 2012 for Developers whitepaper, 2012 was enhanced to support dimensions which were not supported in AX 2009 meaning that you can not display data from dimension fields on SSRS reports: enter image description here

问题回答

I used this kind of approach (joining all posible Dimensions table combinations) note that example is only for first two dmensions: LedgerTransSRS query

Than from srs:

SELECT LedgerTable.1.AccountName,Dimensions.1.DimensionCode:NAME(SysDimension),Dimensions.2.DimensionCode:NAME(SysDimension) FROM LedgerTransSRS

我的原姓氏不是Ledger TransSRS,我的原姓氏是Ledger TransSRS_company Sufix。 我删除了这个例子中的“公司”。 因此,没有修改原有的Ledger TransSRS查询(因为SYS层已经存在并且正在使用这种查询)。

had the same problem but was able to resolve it. When you add the data set in SSRS you must add all fields in the dimension (your query has the dimension listed in fields) - and not just the field of the dimension that you want to access.

因此,对数据集的询问应当:

SELECT * FROM EmplTable

造成错误的部分询问是: EmplTable.1.Dimension ***/code>。

了解你在SSRS数据集中的所有领域,应当解决这个问题。





相关问题
An error has Occurred During Report proccesing

When I m running the report I m getting that message above. The Report Works fine when I press the "Run Report" Button but I want also to avoid that annoying message that appears when the page loads. ...

Reporting services only displaying the last row

I have built a report pretty basic just a table wiht 45 rows of data. Problem is its only showing one row of data and its the last row. It displays just fine in the dataset and proc. any ...

Show Parameters for Reports In SSRS

I m developing an SSRS in Visual Studio BIDS. In it, I have a link that links to another report (report A). Report A has 4 parameters (dates). When I click on that link, it goes to report A fine, but ...

How to add group, or page field in an existing .rdl report

I have several .rdl reports designed for our client. However, they need new ones, that are relatively similar to the old ones. Differences are in the "group" and "page fields" (these can be changed ...

Report rendering using SSRS in Google Chrome

Hey, In our project, we use SSRS integrated with asp.net forms to render reports. The report looks good in IE. when it comes to google chrome, there re some issues we face such as date picker not ...