0

我正在将Reporting Service 与 SharePoint 列表一起使用

我正在查询一个calendar列表,我在获取重复项目时遇到问题。当我尝试使用扩展重复时,出现以下问题 在此处输入图像描述

我的重复查询是:

<RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ListName>SomeList</ListName>
 <Query>
 <Where>
  <DateRangesOverlap>
  <FieldRef Name='EventDate' />
  <FieldRef Name='EndDate' />
  <FieldRef Name='RecurrenceID' />
  <Value Type='DateTime'><Today/></Value>
  </DateRangesOverlap>
 </Where>
 </Query>
<QueryOptions>
 <ExpandRecurrence>TRUE</ExpandRecurrence>
 <CalendarDate><Today/></CalendarDate>
 <ViewAttributes Scope='RecursiveAll' />
 </QueryOptions>
  <ViewFields>
    <FieldRef Name="EventDate" />
    <FieldRef Name="EndDate" />
    <FieldRef Name="fRecurrence" />
    <FieldRef Name="Hosted_x0020_By" />
    <FieldRef Name="External_x0020_Attendees" />
    <FieldRef Name="Catering_x0020_Requirements" />
    <FieldRef Name="Company" />
    <FieldRef Name="Recurrence_x0020_ID" />
    <FieldRef Name="Room" />
    <FieldRef Name="RecurrenceData" />
  </ViewFields>
</RSSharePointList>

合适吗?有没有其他方法可以使用 Reporting Service 处理重复事件?请帮忙。

4

1 回答 1

0

通过创建 XML 类型的新参数来形成每个 XML 标记。

于 2012-11-10T08:49:11.187 回答