Created
September 27, 2019 16:09
-
-
Save Ioan-Popovici/ff2af4d8ec4984391f7c17325d54f110 to your computer and use it in GitHub Desktop.
Lists all SCCM maintenance windows with Start Time and Duration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition"> | |
<Description>Lists all maintenance windows by collection, type and name. For filtering wildcards "*" must be used. By default all maintenance windows will be displayed.</Description> | |
<Author>Popovici Ioan @ SCCM-Zone.com</Author> | |
<AutoRefresh>0</AutoRefresh> | |
<DataSources> | |
<DataSource Name="DataSource"> | |
<DataSourceReference>/ConfigMgr_A01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}</DataSourceReference> | |
<rd:SecurityType>None</rd:SecurityType> | |
<rd:DataSourceID>33f94ec3-1e39-4466-a6ee-65619da20a87</rd:DataSourceID> | |
</DataSource> | |
</DataSources> | |
<DataSets> | |
<DataSet Name="MaintenanceWindowData"> | |
<Query> | |
<DataSourceName>DataSource</DataSourceName> | |
<QueryParameters> | |
<QueryParameter Name="@UserSIDs"> | |
<Value>=Parameters!UserSIDs.Value</Value> | |
</QueryParameter> | |
</QueryParameters> | |
<CommandText>/* | |
.SYNOPSIS | |
Lists all maintenance windows. | |
.DESCRIPTION | |
Lists all SCCM maintenance windows with Start Time and Duration. | |
.NOTES | |
Created by Ioan Popovici | |
Part of a report should not be run separately. | |
.LINK | |
https://SCCM.Zone/SIT-Maintenance-Windows | |
.LINK | |
https://SCCM.Zone/SIT-Maintenance-Windows-CHANGELOG | |
.LINK | |
https://SCCM.Zone/SIT-Maintenance-Windows-GIT | |
.LINK | |
https://SCCM.Zone/Issues | |
*/ | |
/*##=============================================*/ | |
/*## QUERY BODY */ | |
/*##=============================================*/ | |
SELECT | |
Collection.Name AS Collection | |
, ServiceWindow.Name, | |
, ServiceWindow.Description | |
, Type = ( | |
CASE ServiceWindow.ServiceWindowType | |
WHEN 1 THEN 'All Deployments' | |
WHEN 2 THEN 'Programs' | |
WHEN 3 THEN 'Reboot Required' | |
WHEN 4 THEN 'Software Updates' | |
WHEN 5 THEN 'Task Sequences' | |
WHEN 6 THEN 'User Defined' | |
END | |
) | |
, ServiceWindow.StartTime | |
, ServiceWindow.Duration | |
, Enabled = ( | |
CASE ServiceWindow.IsEnabled | |
WHEN 1 THEN 'Yes' | |
ELSE 'No' | |
END | |
) | |
FROM dbo.fn_rbac_ServiceWindow(@UserSIDs) AS ServiceWindow | |
JOIN v_Collection AS [Collection] ON [Collection].CollectionID = ServiceWindow.CollectionID | |
ORDER BY Name | |
/*##=============================================*/ | |
/*## END QUERY BODY */ | |
/*##=============================================*/ | |
</CommandText> | |
<rd:UseGenericDesigner>true</rd:UseGenericDesigner> | |
</Query> | |
<Fields> | |
<Field Name="Collection"> | |
<DataField>Collection</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Name"> | |
<DataField>Name</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Description"> | |
<DataField>Description</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Type"> | |
<DataField>Type</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="StartTime"> | |
<DataField>StartTime</DataField> | |
<rd:TypeName>System.DateTime</rd:TypeName> | |
</Field> | |
<Field Name="Duration"> | |
<DataField>Duration</DataField> | |
<rd:TypeName>System.Int32</rd:TypeName> | |
</Field> | |
<Field Name="Enabled"> | |
<DataField>Enabled</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
</Fields> | |
</DataSet> | |
<DataSet Name="AdminID"> | |
<Query> | |
<DataSourceName>DataSource</DataSourceName> | |
<QueryParameters> | |
<QueryParameter Name="@UserTokenSIDs"> | |
<Value>=Parameters!UserTokenSIDs.Value</Value> | |
</QueryParameter> | |
</QueryParameters> | |
<CommandText>/* Get UserSID */ | |
SELECT dbo.fn_rbac_GetAdminIDsfromUserSIDs (@UserTokenSIDs) AS UserSIDs</CommandText> | |
<rd:UseGenericDesigner>true</rd:UseGenericDesigner> | |
</Query> | |
<Fields> | |
<Field Name="UserSIDs"> | |
<DataField>UserSIDs</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
</Fields> | |
</DataSet> | |
<DataSet Name="ReportDescription"> | |
<Query> | |
<DataSourceName>DataSource</DataSourceName> | |
<QueryParameters> | |
<QueryParameter Name="@ReportName"> | |
<Value>=Parameters!ReportName.Value</Value> | |
</QueryParameter> | |
</QueryParameters> | |
<CommandText>/* ReportDescription Dataset */ | |
SELECT DISTINCT Description | |
FROM ReportServer.dbo.Catalog | |
WHERE Name = @ReportName</CommandText> | |
</Query> | |
<Fields> | |
<Field Name="Description"> | |
<DataField>Description</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
</Fields> | |
</DataSet> | |
</DataSets> | |
<ReportSections> | |
<ReportSection> | |
<Body> | |
<ReportItems> | |
<Tablix Name="Tablix"> | |
<TablixBody> | |
<TablixColumns> | |
<TablixColumn> | |
<Width>92.10864mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>72.76041mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>42.38625mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>27.35846mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>25.37992mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>19.31458mm</Width> | |
</TablixColumn> | |
</TablixColumns> | |
<TablixRows> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_Name"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Name.Value</SortExpression> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Name", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_Description"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Description.Value</SortExpression> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Description", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_StartTime"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!StartTime.Value</SortExpression> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("StartTime", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_Duration"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Duration.Value</SortExpression> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Duration", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_Enabled"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Enabled.Value</SortExpression> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Enabled", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_Total"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Sum(Count(Fields!Name.Value))</SortExpression> | |
<SortExpressionScope>Collection</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Total", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Name"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Name.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Description"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Description.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_StartTime"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!StartTime.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Duration"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Duration.Value</Value> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Enabled"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Enabled.Value</Value> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox8"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox8</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox82"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox79</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#c6daf8</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox79"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox79</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#c6daf8</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Row_Merged_0"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#c6daf8</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
<ColSpan>3</ColSpan> | |
</CellContents> | |
</TablixCell> | |
<TablixCell /> | |
<TablixCell /> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Total_NamesPerType"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Count(Fields!Name.Value)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#c6daf8</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.35mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox81"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox80</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox80"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox80</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Row_Merged_1"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
<ColSpan>3</ColSpan> | |
</CellContents> | |
</TablixCell> | |
<TablixCell /> | |
<TablixCell /> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Total_NamesPerCollection"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=CountDistinct(Fields!Name.Value)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox85"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox83</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox83"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox83</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Row_Merged_3"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
<ColSpan>3</ColSpan> | |
</CellContents> | |
</TablixCell> | |
<TablixCell /> | |
<TablixCell /> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Total_Names"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Count(Fields!Name.Value)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
</TablixRows> | |
</TablixBody> | |
<TablixColumnHierarchy> | |
<TablixMembers> | |
<TablixMember /> | |
<TablixMember /> | |
<TablixMember /> | |
<TablixMember /> | |
<TablixMember /> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixColumnHierarchy> | |
<TablixRowHierarchy> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>112.69088mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Collection"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Collection.Value</SortExpression> | |
<SortExpressionScope>Collection</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Collection", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>39.42291mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Type"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Type.Value</SortExpression> | |
<SortExpressionScope>Type</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Type", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>11pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#7292cc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#4c68a2</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="Collection"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!Collection.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Collection.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!Type.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>112.69088mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Collection"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Collection.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Top</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="Type"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!Type.Value</GroupExpression> | |
</GroupExpressions> | |
<PageBreak> | |
<BreakLocation>StartAndEnd</BreakLocation> | |
</PageBreak> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Type.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>39.42291mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Type"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Type.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#c6daf8</BackgroundColor> | |
<VerticalAlign>Top</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="Details" /> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Name.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!Description.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!StartTime.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!Duration.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!Enabled.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixMembers> | |
<TablixMember /> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>TV_Type</ToggleItem> | |
</Visibility> | |
</TablixMember> | |
<TablixMember /> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>TV_Collection</ToggleItem> | |
</Visibility> | |
</TablixMember> | |
<TablixMember> | |
<TablixHeader> | |
<Size>39.42291mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox84"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox80</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
<TablixMember> | |
<TablixHeader> | |
<Size>112.69088mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Total"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>Total</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>39.42291mm</Size> | |
<CellContents> | |
<Textbox Name="Model_01"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#9eb6e4</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#7292cc</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixRowHierarchy> | |
<DataSetName>MaintenanceWindowData</DataSetName> | |
<Filters> | |
<Filter> | |
<FilterExpression>=Fields!Collection.Value</FilterExpression> | |
<Operator>Like</Operator> | |
<FilterValues> | |
<FilterValue>=Parameters!FilterCollectionName.Value</FilterValue> | |
</FilterValues> | |
</Filter> | |
<Filter> | |
<FilterExpression>=Fields!Name.Value</FilterExpression> | |
<Operator>Like</Operator> | |
<FilterValues> | |
<FilterValue>=Parameters!FilterMWName.Value</FilterValue> | |
</FilterValues> | |
</Filter> | |
</Filters> | |
<Top>12.76107mm</Top> | |
<Left>0.9525mm</Left> | |
<Height>33.56732mm</Height> | |
<Width>431.42205mm</Width> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
</Style> | |
</Tablix> | |
<Tablix Name="ReportDescriptionTablix"> | |
<TablixBody> | |
<TablixColumns> | |
<TablixColumn> | |
<Width>1.47018in</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>8.34071in</Width> | |
</TablixColumn> | |
</TablixColumns> | |
<TablixRows> | |
<TablixRow> | |
<Height>0.4in</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Report_DescriptionLabel"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Description", User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>9pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Report_DescriptionText"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString(Fields!Description.Value, User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>9pt</FontSize> | |
<FontWeight>Normal</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>Report_DescriptionLabel</ToggleItem> | |
</Visibility> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<PaddingLeft>5pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
</TablixRows> | |
</TablixBody> | |
<TablixColumnHierarchy> | |
<TablixMembers> | |
<TablixMember /> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixColumnHierarchy> | |
<TablixRowHierarchy> | |
<TablixMembers> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixRowHierarchy> | |
<DataSetName>ReportDescription</DataSetName> | |
<Top>0.03157in</Top> | |
<Left>0.127cm</Left> | |
<Height>0.4in</Height> | |
<Width>9.81089in</Width> | |
<ZIndex>1</ZIndex> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
</Style> | |
</Tablix> | |
<Line Name="ReportDescriptionLine2"> | |
<Top>0.45796in</Top> | |
<Left>0.0375in</Left> | |
<Height>0in</Height> | |
<Width>16.98512in</Width> | |
<ZIndex>2</ZIndex> | |
<Style> | |
<Border> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>1.5pt</Width> | |
</Border> | |
<TopBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>1.5pt</Width> | |
</TopBorder> | |
<BottomBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>1.5pt</Width> | |
</BottomBorder> | |
<LeftBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>1.5pt</Width> | |
</LeftBorder> | |
<RightBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>1.5pt</Width> | |
</RightBorder> | |
</Style> | |
</Line> | |
</ReportItems> | |
<Height>4.72533cm</Height> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<BackgroundColor>#6e7b8b</BackgroundColor> | |
</Style> | |
</Body> | |
<Width>43.33153cm</Width> | |
<Page> | |
<PageHeader> | |
<Height>2.5333cm</Height> | |
<PrintOnFirstPage>true</PrintOnFirstPage> | |
<PrintOnLastPage>true</PrintOnLastPage> | |
<ReportItems> | |
<Image Name="Logo"> | |
<Source>Embedded</Source> | |
<Value>Logo</Value> | |
<Sizing>FitProportional</Sizing> | |
<Top>0.05723in</Top> | |
<Left>0.12701cm</Left> | |
<Height>0.49111in</Height> | |
<Width>1.47018in</Width> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
</Style> | |
</Image> | |
<Line Name="ReportDescriptionLine"> | |
<Top>0.6007in</Top> | |
<Left>0.0375in</Left> | |
<Height>0in</Height> | |
<Width>16.98512in</Width> | |
<ZIndex>1</ZIndex> | |
<Style> | |
<Border> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>0.75pt</Width> | |
</Border> | |
<TopBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>0.75pt</Width> | |
</TopBorder> | |
<BottomBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>0.75pt</Width> | |
</BottomBorder> | |
<LeftBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>0.75pt</Width> | |
</LeftBorder> | |
<RightBorder> | |
<Color>White</Color> | |
<Style>Double</Style> | |
<Width>0.75pt</Width> | |
</RightBorder> | |
</Style> | |
</Line> | |
<Textbox Name="ReportName"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString(Globals!ReportName, User!Language)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontSize>17pt</FontSize> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Top>1.63513cm</Top> | |
<Left>0.12701cm</Left> | |
<Height>0.89817cm</Height> | |
<Width>24.91965cm</Width> | |
<ZIndex>2</ZIndex> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</ReportItems> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<BackgroundColor>#6e7b8b</BackgroundColor> | |
</Style> | |
</PageHeader> | |
<PageFooter> | |
<Height>0.77603cm</Height> | |
<PrintOnFirstPage>true</PrintOnFirstPage> | |
<PrintOnLastPage>true</PrintOnLastPage> | |
<ReportItems> | |
<Textbox Name="txtPage"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>="Page: " + Globals!PageNumber.ToString() + "of " + Globals!TotalPages.ToString()</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
<Color>White</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Top>0.03528cm</Top> | |
<Left>0.03175cm</Left> | |
<Height>0.63492cm</Height> | |
<Width>2.79292cm</Width> | |
<Style> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</ReportItems> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<BackgroundColor>#6e7b8b</BackgroundColor> | |
</Style> | |
</PageFooter> | |
<PageHeight>29.7cm</PageHeight> | |
<PageWidth>21cm</PageWidth> | |
<LeftMargin>2.54cm</LeftMargin> | |
<RightMargin>2.54cm</RightMargin> | |
<TopMargin>2.54cm</TopMargin> | |
<BottomMargin>2.54cm</BottomMargin> | |
<ColumnSpacing>1.27cm</ColumnSpacing> | |
<Style /> | |
</Page> | |
</ReportSection> | |
</ReportSections> | |
<ReportParameters> | |
<ReportParameter Name="UserTokenSIDs"> | |
<DataType>String</DataType> | |
<DefaultValue> | |
<Values> | |
<Value>=SrsResources.UserIdentity.GetUserSIDs(User!UserID)</Value> | |
</Values> | |
</DefaultValue> | |
<Prompt>UserTokenSIDs</Prompt> | |
<Hidden>true</Hidden> | |
<cl:ComponentMetadata> | |
<cl:ComponentId>7b5f538e-1262-4705-a7df-7d4d398a195e</cl:ComponentId> | |
<cl:SourcePath>/Report Parts/UserTokenSIDs</cl:SourcePath> | |
<cl:SyncDate>2015-02-25T10:56:20.9331936+01:00</cl:SyncDate> | |
</cl:ComponentMetadata> | |
</ReportParameter> | |
<ReportParameter Name="UserSIDs"> | |
<DataType>String</DataType> | |
<DefaultValue> | |
<DataSetReference> | |
<DataSetName>AdminID</DataSetName> | |
<ValueField>UserSIDs</ValueField> | |
</DataSetReference> | |
</DefaultValue> | |
<Prompt>UserSIDs</Prompt> | |
<Hidden>true</Hidden> | |
<cl:ComponentMetadata> | |
<cl:ComponentId>2c7b7dc1-c255-43f4-b6eb-9836f5be644e</cl:ComponentId> | |
<cl:SourcePath>/Report Parts/UserSIDs</cl:SourcePath> | |
<cl:SyncDate>2015-02-25T10:56:21.3863414+01:00</cl:SyncDate> | |
</cl:ComponentMetadata> | |
</ReportParameter> | |
<ReportParameter Name="ReportName"> | |
<DataType>String</DataType> | |
<DefaultValue> | |
<Values> | |
<Value>=Globals!ReportName</Value> | |
</Values> | |
</DefaultValue> | |
<Hidden>true</Hidden> | |
</ReportParameter> | |
<ReportParameter Name="ReportDescription"> | |
<DataType>String</DataType> | |
<Nullable>true</Nullable> | |
<DefaultValue> | |
<DataSetReference> | |
<DataSetName>ReportDescription</DataSetName> | |
<ValueField>Description</ValueField> | |
</DataSetReference> | |
</DefaultValue> | |
<AllowBlank>true</AllowBlank> | |
<Hidden>true</Hidden> | |
</ReportParameter> | |
<ReportParameter Name="FilterCollectionName"> | |
<DataType>String</DataType> | |
<Nullable>true</Nullable> | |
<DefaultValue> | |
<Values> | |
<Value>*</Value> | |
</Values> | |
</DefaultValue> | |
<AllowBlank>true</AllowBlank> | |
<Prompt>Filter by Collection Name</Prompt> | |
</ReportParameter> | |
<ReportParameter Name="FilterMWName"> | |
<DataType>String</DataType> | |
<Nullable>true</Nullable> | |
<DefaultValue> | |
<Values> | |
<Value>*</Value> | |
</Values> | |
</DefaultValue> | |
<AllowBlank>true</AllowBlank> | |
<Prompt>Filter by Maintenance Window Name</Prompt> | |
</ReportParameter> | |
</ReportParameters> | |
<Language>=User!Language</Language> | |
<CodeModules> | |
<CodeModule>SrsResources, culture=neutral</CodeModule> | |
</CodeModules> | |
<rd:ReportUnitType>Cm</rd:ReportUnitType> | |
<rd:ReportServerUrl></rd:ReportServerUrl> | |
<rd:ReportID>1fab2b54-57de-49d3-aea2-75b9febeb7dc</rd:ReportID> | |
</Report> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment