Last active
September 27, 2019 15:01
-
-
Save Ioan-Popovici/9bcec690fff827a4779c582ad3416b9c to your computer and use it in GitHub Desktop.
Gets the software update compliance in SCCM by computer, classification and severity
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 software update compliance by computer, classification and severity. Note: Only updates present in the SCCM database are displayed. This affects both the installed and required update information displayed. Default exclusions are for antivirus definitions.</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="UpdateAndComputerData"> | |
<Query> | |
<DataSourceName>DataSource</DataSourceName> | |
<QueryParameters> | |
<QueryParameter Name="@Locale"> | |
<Value>=Parameters!Locale.Value</Value> | |
</QueryParameter> | |
<QueryParameter Name="@UserSIDs"> | |
<Value>=Parameters!UserSIDs.Value</Value> | |
</QueryParameter> | |
<QueryParameter Name="@CollectionID"> | |
<Value>=Parameters!CollectionID.Value</Value> | |
</QueryParameter> | |
<QueryParameter Name="@ShowInstalled"> | |
<Value>=Parameters!ShowInstalled.Value</Value> | |
</QueryParameter> | |
<QueryParameter Name="@ExcludeUpdates"> | |
<Value>=Parameters!ExcludeUpdates.Value</Value> | |
</QueryParameter> | |
</QueryParameters> | |
<CommandText>/* | |
.SYNOPSIS | |
Gets the software update compliance in SCCM. | |
.DESCRIPTION | |
Gets the software update compliance in SCCM by computer, classification and severity. | |
.NOTES | |
Created by | |
Ioan Popovici 2018-10-11 | |
Release notes | |
https://github.com/Ioan-Popovici/SCCMZone/blob/master/Reporting/Updates/SU%20Compliance%20by%20Computer%20Classification%20and%20Severity/CHANGELOG.md | |
This query is part of a report should not be run separately. | |
.LINK | |
https://SCCM-Zone.com | |
.LINK | |
https://github.com/Ioan-Popovici/SCCMZone | |
*/ | |
/*##=============================================*/ | |
/*## QUERY BODY */ | |
/*##=============================================*/ | |
/* Testing variables !! Need to be commented for Production !! */ | |
--DECLARE @UserSIDs AS NVARCHAR(10) = 'Disabled'; | |
--DECLARE @CollectionID AS NVARCHAR(10) = 'A010000A'; | |
--DECLARE @Locale AS INT = '2'; | |
--DECLARE @ShowInstalled AS INT = '0'; | |
--DECLARE @ExcludeUpdates AS NVARCHAR(250) = '915597,2267602,2461484' --AV Definitions | |
/* Variable declaration */ | |
DECLARE @LCID AS INT = dbo.fn_LShortNameToLCID (@Locale) | |
/* Initialize ClientState descriptor table */ | |
DECLARE @ClientState TABLE | |
( | |
BitMask int | |
, StateName NVARCHAR(250) | |
) | |
/* Populate ClientState table */ | |
INSERT INTO @ClientState | |
(BitMask, StateName) | |
VALUES | |
('0', 'No Reboot'), | |
('1', 'Configuration Manager'), | |
('2', 'File Rename'), | |
('4', 'Windows Update'), | |
('8', 'Add or Remove Feature') | |
/* Initialize SystemsInfo table */ | |
DECLARE @SystemsInfo TABLE | |
( | |
ResourceID INT | |
, ComputerName NVARCHAR(250) | |
, UserName NVARCHAR(250) | |
, OperatingSystem NVARCHAR(250) | |
, OSBuild NVARCHAR(250) | |
, OSVersion NVARCHAR(250) | |
, Domain NVARCHAR(250) | |
, IPAddresses NVARCHAR(250) | |
, LastBootTime NVARCHAR(250) | |
, PendingRestart NVARCHAR(250) | |
, Managed NVARCHAR(5) | |
, ClientState NVARCHAR(20) | |
, ClientVersion NVARCHAR(250) | |
, LastUpdateScan NVARCHAR(250) | |
) | |
/* Initialize UpdateInfo table */ | |
DECLARE @UpdateInfo TABLE | |
( | |
ResourceID INT | |
, ComplianceStatus NVARCHAR(250) | |
, Classification NVARCHAR(250) | |
, Severity NVARCHAR(250) | |
, ArticleID NVARCHAR(250) | |
, BulletinID NVARCHAR(250) | |
, DisplayName NVARCHAR(250) | |
, DateRevised NVARCHAR(250) | |
, IsDeployed NVARCHAR(5) | |
, IsEnabled NVARCHAR(5) | |
) | |
/* Get systems data */ | |
INSERT INTO @SystemsInfo (ResourceID, ComputerName, UserName, OperatingSystem, OSBuild, OSVersion, Domain, IPAddresses, LastBootTime, PendingRestart, Managed, ClientState, ClientVersion, LastUpdateScan) | |
SELECT | |
ResourceID = Computers.ResourceID | |
, ComputerName = Computers.Netbios_Name0 | |
, UserName = CONCAT(Computers.User_Domain0 + '\', Computers.User_Name0) --Add user domain to UserName | |
, OperatingSystem = | |
CASE | |
WHEN OperatingSystem.Caption0 <> '' THEN | |
CONCAT( | |
REPLACE(OperatingSystem.Caption0, 'Microsoft ', ''), --Remove 'Microsoft ' from OperatingSystem | |
REPLACE(OperatingSystem.CSDVersion0, 'Service Pack ', ' SP') --Replace 'Service Pack ' with ' SP' in OperatingSystem | |
) | |
ELSE | |
/* Workaround for systems not in GS_OPERATING_SYSTEM table */ | |
( | |
CASE | |
WHEN CombinedResources.DeviceOS LIKE '%Workstation 6.1%' THEN 'Windows 7' | |
WHEN CombinedResources.DeviceOS LIKE '%Workstation 6.2%' THEN 'Windows 8' | |
WHEN CombinedResources.DeviceOS LIKE '%Workstation 6.3%' THEN 'Windows 8.1' | |
WHEN CombinedResources.DeviceOS LIKE '%Workstation 10.0%' THEN 'Windows 10' | |
WHEN CombinedResources.DeviceOS LIKE '%Server 6.0' THEN 'Windows Server 2008' | |
WHEN CombinedResources.DeviceOS LIKE '%Server 6.1' THEN 'Windows Server 2008R2' | |
WHEN CombinedResources.DeviceOS LIKE '%Server 6.2' THEN 'Windows Server 2012' | |
WHEN CombinedResources.DeviceOS LIKE '%Server 6.3' THEN 'Windows Server 2012 R2' | |
WHEN CombinedResources.DeviceOS LIKE '%Server 10.0' THEN 'Windows Server 2016' | |
ELSE 'Unknown' | |
END | |
) | |
END | |
, OSBuild = Computers.Build01 | |
, OSVersion = | |
( | |
SELECT OSLocalizedNames.Value | |
FROM fn_GetWindowsServicingLocalizedNames() AS OSLocalizedNames | |
JOIN fn_GetWindowsServicingStates() AS OSServicingStates ON OSServicingStates.Build = Computers.Build01 | |
WHERE OSLocalizedNames.Name = OSServicingStates.Name | |
AND Computers.OSBranch01 = OSServicingStates.Branch --Select only the branch of the installed OS | |
) | |
, Domain = Computers.Full_Domain_Name0 | |
, IPAddresses = | |
REPLACE( | |
( | |
SELECT LTRIM(RTRIM(IP.IP_Addresses0)) AS [data()] | |
FROM fn_rbac_RA_System_IPAddresses(@UserSIDs) AS IP | |
WHERE IP.ResourceID = Computers.ResourceID | |
AND IP.IP_Addresses0 NOT LIKE 'fe%' | |
-- Exclude IPv6 | |
FOR XML PATH('') | |
), | |
' ',', ' -- Replace space with ', ' | |
) | |
, LastBootTime = OperatingSystem.LastBootUpTime0 | |
, PendingRestart = | |
CASE | |
WHEN CombinedResources.ClientState = 0 THEN 'No' | |
ELSE( | |
STUFF( | |
REPLACE( | |
( | |
SELECT '#!' + LTRIM(RTRIM(StateName)) AS [data()] | |
FROM @ClientState | |
WHERE BitMask & CombinedResources.ClientState <> 0 | |
FOR XML PATH('') | |
), | |
' #!',', ' | |
), | |
1, 2, '' | |
) | |
) | |
END | |
, Managed = | |
CASE Computers.Client0 | |
WHEN 1 THEN 'Yes' | |
ELSE 'No' | |
END | |
, ClientState = ClientSummary.ClientStateDescription | |
, ClientVersion = Computers.Client_Version0 | |
, LastUpdateScan = UpdateScan.LastScanTime | |
FROM fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers | |
LEFT JOIN fn_rbac_R_System(@UserSIDs) AS Computers ON Computers.ResourceID = CollectionMembers.ResourceID | |
LEFT JOIN fn_rbac_GS_OPERATING_SYSTEM(@UserSIDs) OperatingSystem ON OperatingSystem.ResourceID = CollectionMembers.ResourceID | |
LEFT JOIN fn_rbac_CombinedDeviceResources(@UserSIDs) AS CombinedResources ON CombinedResources.MachineID = CollectionMembers.ResourceID | |
LEFT JOIN fn_rbac_CH_ClientSummary(@UserSIDs) AS ClientSummary ON ClientSummary.ResourceID = CollectionMembers.ResourceID | |
LEFT JOIN fn_rbac_UpdateScanStatus(@UserSIDs) AS UpdateScan ON UpdateScan.ResourceID = CollectionMembers.ResourceID | |
WHERE CollectionMembers.CollectionID = @CollectionID | |
/* Get update data */ | |
INSERT INTO @UpdateInfo (ResourceID, ComplianceStatus, Classification, Severity, ArticleID, BulletinID, DisplayName, DateRevised, IsDeployed, IsEnabled) | |
SELECT | |
CollectionMembers.ResourceID | |
, ComplianceStatus = | |
CASE ComplianceStatus.Status | |
WHEN 0 THEN 'Unknown' | |
WHEN 1 THEN 'Not Required' | |
WHEN 2 THEN 'Required' | |
WHEN 3 THEN 'Installed' | |
END | |
, Classification = Category.CategoryInstanceName | |
, Severity = ISNULL(NULLIF(UpdateCIs.SeverityName, ''), 'Unknown') | |
, ArticleID = UpdateCIs.ArticleID | |
, BulletinID = NULLIF(UpdateCIs.BulletinID, '') | |
, DisplayName = UpdateCIs.DisplayName | |
, DateRevised = UpdateCIs.DateRevised | |
, IsDeployed = | |
CASE UpdateCIs.IsDeployed | |
WHEN 0 THEN 'No' | |
WHEN 1 THEN 'Yes' | |
END | |
, IsEnabled = | |
CASE UpdateCIs.IsEnabled | |
WHEN 0 THEN 'No' | |
WHEN 1 THEN 'Yes' | |
END | |
FROM fn_rbac_ClientCollectionMembers(@UserSIDs) AS CollectionMembers | |
INNER JOIN fn_rbac_Update_ComplianceStatus(@UserSIDs) AS ComplianceStatus ON CollectionMembers.ResourceID = ComplianceStatus.ResourceID | |
AND ComplianceStatus.Status IN (0, 2, @ShowInstalled) --0 Unknown, 2 Required, 3 Installed | |
INNER JOIN fn_ListUpdateCIs(@LCID) AS UpdateCIs ON ComplianceStatus.CI_ID = UpdateCIs.CI_ID | |
AND UpdateCIs.CIType_ID IN (1, 8) --1 Software Updates, 8 Software Update Bundle (v_CITypes) | |
AND UpdateCIs.IsExpired = 0 --Update is not Expired | |
AND UpdateCIs.IsSuperseded = 0 --Update is not Superseeded | |
AND UpdateCIs.ArticleID NOT IN --Exclude updates based on ArticleID | |
( | |
SELECT * FROM dbo.ufn_csv_String_Parser(@ExcludeUpdates, ',') | |
) | |
LEFT JOIN fn_rbac_CICategories_All(@UserSIDs) AS CICategories ON UpdateCIs.CI_ID = CICategories.CI_ID | |
RIGHT JOIN fn_rbac_ListUpdateCategoryInstances(@LCID, @UserSIDs) AS Category ON CICategories.CategoryInstanceID = Category.CategoryInstanceID | |
AND Category.CategoryTypeName = 'UpdateClassification' --Get only the 'UpdateClasification' category | |
WHERE CollectionMembers.CollectionID = @CollectionID | |
/* Join SystemsInfo and UpdateInfo data */ | |
SELECT | |
Managed | |
, ComputerName | |
, UserName | |
, OperatingSystem | |
, OSBuild | |
, OSVersion | |
, Domain | |
, IPAddresses | |
, LastBootTime | |
, PendingRestart | |
, ClientState | |
, ClientVersion | |
, LastUpdateScan | |
, ComplianceStatus = | |
/* Set Compliance based on Compliance Status Activity and LastUpdateScan */ | |
( | |
CASE | |
WHEN ComplianceStatus IS NOT NULL THEN ComplianceStatus | |
WHEN ComplianceStatus IS NULL | |
AND LastUpdateScan > = (SELECT DATEADD(dd, -7, CURRENT_TIMESTAMP)) --Scanned for updates in the last 7 days | |
AND ClientState LIKE 'Active%' THEN 'Compliant' | |
ELSE 'Unknown' | |
END | |
) | |
, Classification | |
, Severity | |
, ArticleID | |
, BulletinID | |
, DisplayName | |
, DateRevised | |
, IsDeployed | |
, IsEnabled | |
FROM @SystemsInfo AS SystemsInfo | |
LEFT JOIN @UpdateInfo AS UpdateInfo ON UpdateInfo.ResourceID = SystemsInfo.ResourceID | |
ORDER BY | |
Managed | |
, ComputerName | |
, OperatingSystem | |
, OSBuild | |
, OSVersion | |
, Domain | |
, IPAddresses | |
, LastBootTime | |
, PendingRestart | |
, ClientState | |
, ClientVersion | |
, LastUpdateScan | |
, ComplianceStatus | |
, Classification | |
, Severity | |
, ArticleID | |
, BulletinID | |
, DisplayName | |
, DateRevised | |
, IsDeployed | |
, IsEnabled | |
/*##=============================================*/ | |
/*## END QUERY BODY */ | |
/*##=============================================*/</CommandText> | |
<rd:UseGenericDesigner>true</rd:UseGenericDesigner> | |
</Query> | |
<Fields> | |
<Field Name="Managed"> | |
<DataField>Managed</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="ComputerName"> | |
<DataField>ComputerName</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="UserName"> | |
<DataField>UserName</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="OperatingSystem"> | |
<DataField>OperatingSystem</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="OSBuild"> | |
<DataField>OSBuild</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="OSVersion"> | |
<DataField>OSVersion</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Domain"> | |
<DataField>Domain</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="IPAddresses"> | |
<DataField>IPAddresses</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="LastBootTime"> | |
<DataField>LastBootTime</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="PendingRestart"> | |
<DataField>PendingRestart</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="ClientVersion"> | |
<DataField>ClientVersion</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="ClientState"> | |
<DataField>ClientState</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="LastUpdateScan"> | |
<DataField>LastUpdateScan</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="ComplianceStatus"> | |
<DataField>ComplianceStatus</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Classification"> | |
<DataField>Classification</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Severity"> | |
<DataField>Severity</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="BulletinID"> | |
<DataField>BulletinID</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="ArticleID"> | |
<DataField>ArticleID</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="DisplayName"> | |
<DataField>DisplayName</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="DateRevised"> | |
<DataField>DateRevised</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="IsDeployed"> | |
<DataField>IsDeployed</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="IsEnabled"> | |
<DataField>IsEnabled</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="CollectionInfo"> | |
<Query> | |
<DataSourceName>DataSource</DataSourceName> | |
<QueryParameters> | |
<QueryParameter Name="@UserSIDs"> | |
<Value>=Parameters!UserSIDs.Value</Value> | |
</QueryParameter> | |
</QueryParameters> | |
<CommandText>/* Get Device Collections */ | |
SELECT | |
CollectionID, | |
Name | |
FROM dbo.fn_rbac_Collection(@UserSIDs) | |
WHERE CollectionType = 2 | |
ORDER BY | |
Name;</CommandText> | |
<rd:UseGenericDesigner>true</rd:UseGenericDesigner> | |
</Query> | |
<Fields> | |
<Field Name="CollectionID"> | |
<DataField>CollectionID</DataField> | |
<rd:TypeName>System.String</rd:TypeName> | |
</Field> | |
<Field Name="Name"> | |
<DataField>Name</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>108.87292mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>40.08125mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>29.7625mm</Width> | |
</TablixColumn> | |
<TablixColumn> | |
<Width>17.32708mm</Width> | |
</TablixColumn> | |
</TablixColumns> | |
<TablixRows> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TH_DisplayName"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!DisplayName.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("DisplayName", 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_DateRevised"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!DateRevised.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("DateRevised", 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_IsDeployed"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!IsDeployed.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Deployed", 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!ArticleID.Value))</SortExpression> | |
<SortExpressionScope>ComputerName</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>6mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox119"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox119</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox222"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox222</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox223"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox223</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</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_TotalComputers_Managed"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=CountDistinct(Fields!ComputerName.Value)</Value> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox202"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox202</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> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox203"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox203</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> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox204"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox204</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> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox205"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox205</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>6mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox58"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox58</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> | |
<ColSpan>3</ColSpan> | |
</CellContents> | |
</TablixCell> | |
<TablixCell /> | |
<TablixCell /> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox62"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox62</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>6mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox377"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox377</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> | |
<ColSpan>3</ColSpan> | |
</CellContents> | |
</TablixCell> | |
<TablixCell /> | |
<TablixCell /> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Total_Updates_Classification"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Count(Fields!Classification.Value)</Value> | |
<Style> | |
<FontFamily>Tahoma</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> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_DisplayName"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!DisplayName.Value</Value> | |
<Style> | |
<FontFamily>Tahoma</FontFamily> | |
<FontSize>9pt</FontSize> | |
<Color>#4d4d4d</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Left</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_DateRevised"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!DateRevised.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_IsDeployed"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!IsDeployed.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="Textbox26"> | |
<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>Textbox26</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.35mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox385"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox385</rd:DefaultName> | |
<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> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox387"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox385</rd:DefaultName> | |
<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> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox388"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox385</rd:DefaultName> | |
<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> | |
</TablixCell> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="TV_Total_Updates"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Count(Fields!ArticleID.Value)</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
<Color>#4c68a2</Color> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</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> | |
</TablixCell> | |
</TablixCells> | |
</TablixRow> | |
<TablixRow> | |
<Height>6.80433mm</Height> | |
<TablixCells> | |
<TablixCell> | |
<CellContents> | |
<Textbox Name="Textbox41"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox41</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="Textbox49"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox49</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="Textbox45"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox45</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="TV_Total_Computers"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=CountDistinct(Fields!ComputerName.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 /> | |
</TablixMembers> | |
</TablixColumnHierarchy> | |
<TablixRowHierarchy> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>19.44375mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Managed"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Managed", 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>41.36434mm</Size> | |
<CellContents> | |
<Textbox Name="TH_ComputerName"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!ComputerName.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("ComputerName", 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>31.63904mm</Size> | |
<CellContents> | |
<Textbox Name="TH_UserName"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!UserName.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("User", 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>50.18781mm</Size> | |
<CellContents> | |
<Textbox Name="TH_OperatingSystem"> | |
<CanGrow>true</CanGrow> | |
<CanShrink>true</CanShrink> | |
<UserSort> | |
<SortExpression>=Fields!OperatingSystem.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("OperatingSystem", 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>19.17917mm</Size> | |
<CellContents> | |
<Textbox Name="TH_OSBuild"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!OSBuild.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Build", 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>22.35416mm</Size> | |
<CellContents> | |
<Textbox Name="TH_OSVersion"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!OSVersion.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Version", 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>32.14375mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Domain"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Domain.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Domain", 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>33.20208mm</Size> | |
<CellContents> | |
<Textbox Name="TH_IPAdresses"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!IPAddresses.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("IP Addresses", 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>26.45209mm</Size> | |
<CellContents> | |
<Textbox Name="TH_LastBootTime"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!LastBootTime.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Last Boot Time", 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>43.78542mm</Size> | |
<CellContents> | |
<Textbox Name="TH_PendingRestart"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!PendingRestart.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("PendingRestart", 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>25mm</Size> | |
<CellContents> | |
<Textbox Name="TH_ClientVersion"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!ClientVersion.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("ClientVersion", 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>31.61458mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox173"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!ClientState.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("ClientState", 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> | |
<rd:DefaultName>Textbox173</rd:DefaultName> | |
<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>33.46667mm</Size> | |
<CellContents> | |
<Textbox Name="TH_LastUpdateScan"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!LastUpdateScan.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Last Update Scan", 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>25mm</Size> | |
<CellContents> | |
<Textbox Name="TH_ComplianceStatus"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!ComplianceStatus.Value</SortExpression> | |
<SortExpressionScope>ComputerName</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Status", 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>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Classification"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Classification.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Classification", 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>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="TH_Severity"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!Severity.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("Severity", 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>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="TH_ArticleID"> | |
<CanGrow>true</CanGrow> | |
<UserSort> | |
<SortExpression>=Fields!ArticleID.Value</SortExpression> | |
<SortExpressionScope>Classification</SortExpressionScope> | |
</UserSort> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=SrsResources.Localization.GetString("ArticleID", 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> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="Managed"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!Managed.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Managed.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>19.44375mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Managed"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Managed.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> | |
<VerticalAlign>Top</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>41.36434mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox112"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox104</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>31.63904mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox207"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox207</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>50.18781mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox208"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox208</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>19.17917mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox209"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox209</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.35416mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox210"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox210</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>32.14375mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox211"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox211</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>33.20208mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox212"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox212</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>26.45209mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox213"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox213</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>43.78542mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox214"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox214</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox215"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox215</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>31.61458mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox216"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox216</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>33.46667mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox217"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox217</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox218"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox218</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox219"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox219</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox220"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox220</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox221"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox221</rd:DefaultName> | |
<Style> | |
<Border> | |
<Color>#e5e5e5</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>SkyBlue</BackgroundColor> | |
<VerticalAlign>Middle</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
<KeepWithGroup>After</KeepWithGroup> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="ComputerName"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!ComputerName.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!ComputerName.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!UserName.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!OperatingSystem.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!OSBuild.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!OSVersion.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!Domain.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!IPAddresses.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!LastBootTime.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!PendingRestart.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!ClientVersion.Value</Value> | |
</SortExpression> | |
<SortExpression> | |
<Value>=Fields!ClientState.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>41.36434mm</Size> | |
<CellContents> | |
<Textbox Name="TV_ComputerName"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!ComputerName.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<Style> | |
<Border> | |
<Color>#e6eefc</Color> | |
<Style>Solid</Style> | |
</Border> | |
<BackgroundColor>#e6eefc</BackgroundColor> | |
<VerticalAlign>Top</VerticalAlign> | |
<PaddingLeft>2pt</PaddingLeft> | |
<PaddingRight>2pt</PaddingRight> | |
<PaddingTop>2pt</PaddingTop> | |
<PaddingBottom>2pt</PaddingBottom> | |
</Style> | |
</Textbox> | |
</CellContents> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="UserName"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!UserName.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<TablixHeader> | |
<Size>31.63904mm</Size> | |
<CellContents> | |
<Textbox Name="TV_UserName"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!UserName.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="OperatingSystem"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!OperatingSystem.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!OperatingSystem.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>50.18781mm</Size> | |
<CellContents> | |
<Textbox Name="TV_OperatingSystem"> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!OperatingSystem.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="OSBuild"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!OSBuild.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!OSBuild.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>19.17917mm</Size> | |
<CellContents> | |
<Textbox Name="TV_OSBuild"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!OSBuild.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="OSVersion"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!OSVersion.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!OSVersion.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>22.35416mm</Size> | |
<CellContents> | |
<Textbox Name="TV_OSVersion"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!OSVersion.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="Domain"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!Domain.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Domain.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>32.14375mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Domain"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Domain.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="IPAddresses"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!IPAddresses.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!IPAddresses.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>33.20208mm</Size> | |
<CellContents> | |
<Textbox Name="TV_IPAddresses"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Label>IPAddresses</Label> | |
<Value>=REPLACE(Fields!IPAddresses.Value,", ",CHR(10))</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="LastBootTime"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!LastBootTime.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!LastBootTime.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>26.45209mm</Size> | |
<CellContents> | |
<Textbox Name="TV_LastBootTime"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!LastBootTime.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="PendingRestart"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!PendingRestart.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!PendingRestart.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>43.78542mm</Size> | |
<CellContents> | |
<Textbox Name="TV_PendingRestart"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Label>PendingRestart</Label> | |
<Value>=REPLACE(Fields!PendingRestart.Value,", ",CHR(10))</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="ClientVersion"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!ClientVersion.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!ClientVersion.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="TV_ClientVersion"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!ClientVersion.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="ClientState"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!ClientState.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!ClientState.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>31.61458mm</Size> | |
<CellContents> | |
<Textbox Name="ClientState"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!ClientState.Value</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>ClientState</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<Group Name="LastUpdateScan"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!LastUpdateScan.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!LastUpdateScan.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>33.46667mm</Size> | |
<CellContents> | |
<Textbox Name="TV_LastUpdateScan"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!LastUpdateScan.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox198"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Label>Compliance</Label> | |
<Value>=IIF(Fields!ComplianceStatus.Value = "Compliant", "Compliant", (IIF(Fields!Managed.Value = "No", "Unknown", "")))</Value> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style> | |
<TextAlign>Center</TextAlign> | |
</Style> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox198</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox199"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox199</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox200"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox200</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox201"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox201</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> | |
</TablixHeader> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
<KeepWithGroup>After</KeepWithGroup> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="ComplianceStatus"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!ComplianceStatus.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!ComplianceStatus.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="TV_ComplianceStatus"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!ComplianceStatus.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>81.00294mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox55"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox55</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> | |
</TablixHeader> | |
<KeepWithGroup>After</KeepWithGroup> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="Classification"> | |
<GroupExpressions> | |
<GroupExpression>=Fields!Classification.Value</GroupExpression> | |
</GroupExpressions> | |
</Group> | |
<SortExpressions> | |
<SortExpression> | |
<Value>=Fields!Classification.Value</Value> | |
</SortExpression> | |
</SortExpressions> | |
<TablixHeader> | |
<Size>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Classification"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Classification.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>44.89044mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox374"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox374</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> | |
</TablixHeader> | |
<KeepWithGroup>After</KeepWithGroup> | |
</TablixMember> | |
<TablixMember> | |
<Group Name="Details" /> | |
<TablixHeader> | |
<Size>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="TV_Severity"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!Severity.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="TV_ArticleID"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value>=Fields!ArticleID.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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>TV_Classification</ToggleItem> | |
</Visibility> | |
</TablixMember> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>TV_ComplianceStatus</ToggleItem> | |
</Visibility> | |
</TablixMember> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>=IIf((Fields!Managed.Value="No" OR Fields!ComplianceStatus.Value = "Compliant" ), True, False)</Hidden> | |
</Visibility> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
<TablixMember> | |
<TablixHeader> | |
<Size>41.36434mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox206"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox206</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>31.63904mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox9"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox9</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>50.18781mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox279"> | |
<CanGrow>true</CanGrow> | |
<CanShrink>true</CanShrink> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox279</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>19.17917mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox285"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox285</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>22.35416mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox293"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox293</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>32.14375mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox307"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox307</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>33.20208mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox313"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox313</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>26.45209mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox319"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox319</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>43.78542mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox73"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox73</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox331"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox331</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>31.61458mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox177"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox177</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>33.46667mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox335"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox335</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox339"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox339</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox347"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox347</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox351"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox351</rd:DefaultName> | |
<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> | |
<TablixHeader> | |
<Size>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox30"> | |
<CanGrow>true</CanGrow> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox30</rd:DefaultName> | |
<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 /> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
<Visibility> | |
<Hidden>true</Hidden> | |
<ToggleItem>TV_Managed</ToggleItem> | |
</Visibility> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
<TablixMember> | |
<TablixHeader> | |
<Size>19.44375mm</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>41.36434mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox123"> | |
<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>Textbox123</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>31.63904mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox10"> | |
<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>Textbox10</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>50.18781mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox280"> | |
<CanGrow>true</CanGrow> | |
<CanShrink>true</CanShrink> | |
<KeepTogether>true</KeepTogether> | |
<Paragraphs> | |
<Paragraph> | |
<TextRuns> | |
<TextRun> | |
<Value /> | |
<Style> | |
<FontFamily>Segoe UI</FontFamily> | |
<FontWeight>Bold</FontWeight> | |
</Style> | |
</TextRun> | |
</TextRuns> | |
<Style /> | |
</Paragraph> | |
</Paragraphs> | |
<rd:DefaultName>Textbox280</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>19.17917mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox286"> | |
<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>Textbox286</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.35416mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox294"> | |
<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>Textbox294</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>32.14375mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox308"> | |
<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>Textbox308</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>33.20208mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox314"> | |
<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>Textbox314</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>26.45209mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox320"> | |
<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>Textbox320</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>43.78542mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox74"> | |
<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>Textbox74</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox332"> | |
<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>Textbox332</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>31.61458mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox178"> | |
<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>Textbox178</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>33.46667mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox336"> | |
<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>Textbox336</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>25mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox340"> | |
<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>Textbox340</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>36.1125mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox348"> | |
<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>Textbox348</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.80085mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox352"> | |
<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>Textbox352</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember> | |
<TablixHeader> | |
<Size>22.08959mm</Size> | |
<CellContents> | |
<Textbox Name="Textbox386"> | |
<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>Textbox386</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> | |
</TablixHeader> | |
<TablixMembers> | |
<TablixMember /> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixMember> | |
</TablixMembers> | |
</TablixRowHierarchy> | |
<RepeatColumnHeaders>true</RepeatColumnHeaders> | |
<RepeatRowHeaders>true</RepeatRowHeaders> | |
<DataSetName>UpdateAndComputerData</DataSetName> | |
<Top>13.39607mm</Top> | |
<Left>0.9525mm</Left> | |
<Height>50.76299mm</Height> | |
<Width>711.87955mm</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>28.02675in</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>6.41591cm</Height> | |
<Style> | |
<Border> | |
<Style>None</Style> | |
</Border> | |
<BackgroundColor>#6e7b8b</BackgroundColor> | |
</Style> | |
</Body> | |
<Width>71.4155cm</Width> | |
<Page> | |
<PageHeader> | |
<Height>2.5333cm</Height> | |
<PrintOnFirstPage>true</PrintOnFirstPage> | |
<PrintOnLastPage>true</PrintOnLastPage> | |
<ReportItems> | |
<Line Name="ReportDescriptionLine"> | |
<Top>0.6007in</Top> | |
<Left>0.0375in</Left> | |
<Height>0in</Height> | |
<Width>28.02675in</Width> | |
<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>1</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.82022cm</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="Locale"> | |
<DataType>String</DataType> | |
<DefaultValue> | |
<Values> | |
<Value>=User!Language</Value> | |
</Values> | |
</DefaultValue> | |
<Prompt>Locale</Prompt> | |
<Hidden>true</Hidden> | |
</ReportParameter> | |
<ReportParameter Name="CollectionID"> | |
<DataType>String</DataType> | |
<Prompt>Collection</Prompt> | |
<ValidValues> | |
<DataSetReference> | |
<DataSetName>CollectionInfo</DataSetName> | |
<ValueField>CollectionID</ValueField> | |
<LabelField>Name</LabelField> | |
</DataSetReference> | |
</ValidValues> | |
</ReportParameter> | |
<ReportParameter Name="ShowInstalled"> | |
<DataType>String</DataType> | |
<Nullable>true</Nullable> | |
<DefaultValue> | |
<Values> | |
<Value>0</Value> | |
</Values> | |
</DefaultValue> | |
<Prompt>Show Installed Updates</Prompt> | |
<ValidValues> | |
<ParameterValues> | |
<ParameterValue> | |
<Value>3</Value> | |
<Label>Yes</Label> | |
</ParameterValue> | |
<ParameterValue> | |
<Value>0</Value> | |
<Label>No</Label> | |
</ParameterValue> | |
</ParameterValues> | |
</ValidValues> | |
</ReportParameter> | |
<ReportParameter Name="ExcludeUpdates"> | |
<DataType>String</DataType> | |
<DefaultValue> | |
<Values> | |
<Value>915597,2267602,2461484</Value> | |
</Values> | |
</DefaultValue> | |
<AllowBlank>true</AllowBlank> | |
<Prompt>Exlude Updates by ArticleID List (915597,2267602,2461484,...)</Prompt> | |
<MultiValue>true</MultiValue> | |
</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> | |
</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