【发布时间】:2016-08-23 07:03:14
【问题描述】:
我需要从两个 SharePoint 列表中检索一份报告的数据。共同的字段是主表(操作项)中的“请求 ID”和表(请求)中的“ID”以及我需要的字段(应用程序)。我尝试使用在解决方案中找到的这种方法:
=Join(
LookupSet(
Fields!FirstList_Key.Value,
Fields!SecondList_Key.Value,
Fields!SecondList_DisplayCol.Value,
"Name of Second List")
)
我的代码实际上是这样写的:
=Join(LookupSet(Fields!Request_ID.Value, Fields!ID.Value, Fields!Application.Value, "Requests"))
但我继续收到错误消息“textrun 'Textbox4.. 的值表达式”包含错误。请求“System.Security.Permissions.SecurityPermission...”的权限类型失败。
我不知道下一步该尝试什么。
【问题讨论】:
标签: reporting-services sharepoint-2013