来自两个SharePoint列表错误的SSRS报告

时间:2016-08-09 15:52:25

标签: reporting-services sharepoint-2013

我有两个SharePoint列表,我需要从一个报表中检索数据。共同的字段是主表(Action Items)中的“Request ID”和表中的“ID”(Requests)以及我需要的字段(Application)。我尝试过使用我在解决方案中找到的方法:

=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”))

Datasets

但我继续收到错误“textrun'Textbox4的值表达式..”包含错误。请求“System.Security.Permissions.SecurityPermission ...”的权限类型失败。

我不知道下一步该尝试什么。

1 个答案:

答案 0 :(得分:0)

事实证明,出于某种原因,我必须将两个键值都转换为Int。

= Join(LookupSet(Cint(Fields!Request_ID.Value),CInt(Fields!ID.Value),Fields!Application.Value,“Requests”),“,”)

这有效......