Informes de ámbitos DHCP

Microsoft.Windows.DHCPServer.Library.Scopes.Report (Report)

Element properties:

AccessibilityPublic
VisibleTrue

Source Code:

<Report ID="Microsoft.Windows.DHCPServer.Library.Scopes.Report" Accessibility="Public" Target="Microsoft.Windows.DHCPServer.Library.Server" Visible="true">
<Dependencies>
<ReportParameterControl>ReportLibrary!Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.TextBox</ReportParameterControl>
<ReportParameterControl>ReportLibrary!Microsoft.SystemCenter.DataWarehouse.Report.ParameterControl.RelativeDateTimePicker</ReportParameterControl>
</Dependencies>
<Definition>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<DataSources>
<DataSource Name="DataWarehouseMain">
<rd:DataSourceID>e4235c51-407f-4065-8519-a1e57374bc45</rd:DataSourceID>
<DataSourceReference>Data Warehouse Main</DataSourceReference>
</DataSource>
</DataSources>
<InteractiveHeight>11in</InteractiveHeight>
<ReportParameters>
<ReportParameter Name="FilterOption">
<DataType>Integer</DataType>
<DefaultValue>
<Values>
<Value>=0</Value>
</Values>
</DefaultValue>
<Prompt>Filter Option</Prompt>
<ValidValues>
<ParameterValues>
<ParameterValue>
<Value>0</Value>
<Label>All</Label>
</ParameterValue>
<ParameterValue>
<Value>1</Value>
<Label>Only DHCP 2003</Label>
</ParameterValue>
<ParameterValue>
<Value>2</Value>
<Label>Only DHCP 2008</Label>
</ParameterValue>
</ParameterValues>
</ValidValues>
</ReportParameter>
<ReportParameter Name="SuperScopeName">
<DataType>String</DataType>
<DefaultValue>
<DataSetReference>
<DataSetName>SuperScopeList</DataSetName>
<ValueField>SuperScopeName</ValueField>
</DataSetReference>
</DefaultValue>
<Prompt>Super Scope Name</Prompt>
<ValidValues>
<DataSetReference>
<DataSetName>SuperScopeList</DataSetName>
<ValueField>SuperScopeName</ValueField>
<LabelField>SuperScopeName</LabelField>
</DataSetReference>
</ValidValues>
</ReportParameter>
<ReportParameter Name="ScopeName">
<DataType>String</DataType>
<DefaultValue>
<DataSetReference>
<DataSetName>ScopeList</DataSetName>
<ValueField>ScopeName</ValueField>
</DataSetReference>
</DefaultValue>
<Prompt>Scope Name</Prompt>
<ValidValues>
<DataSetReference>
<DataSetName>ScopeList</DataSetName>
<ValueField>ScopeName</ValueField>
<LabelField>ScopeName</LabelField>
</DataSetReference>
</ValidValues>
</ReportParameter>
<ReportParameter Name="DateTimeToReport">
<DataType>DateTime</DataType>
<Prompt>DateTimeToReport</Prompt>
</ReportParameter>
</ReportParameters>
<rd:DrawGrid>true</rd:DrawGrid>
<InteractiveWidth>8.5in</InteractiveWidth>
<rd:SnapToGrid>true</rd:SnapToGrid>
<RightMargin>1in</RightMargin>
<LeftMargin>1in</LeftMargin>
<BottomMargin>1in</BottomMargin>
<rd:ReportID>f84a272f-3064-41aa-9692-765994f8a9c9</rd:ReportID>
<DataSets>
<DataSet Name="SuperScopeList">
<Fields>
<Field Name="SuperScopeId">
<DataField>SuperScopeId</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="SuperScopeName">
<DataField>SuperScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select '0' as SuperScopeId,
'All' as SuperScopeName
Union
Select distinct RIn.PerformanceRuleInstanceRowId as SuperScopeId,
RIn.InstanceName as SuperScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectSuperscopeAddressesInUse'
)
)

And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null

)
)
)
)
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
<DataSet Name="ScopeList">
<Fields>
<Field Name="ScopeId">
<DataField>ScopeId</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="ScopeName">
<DataField>ScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select '0' as ScopeId,
'All' as ScopeName
Union
Select distinct RIn.PerformanceRuleInstanceRowId as ScopeId,
RIn.InstanceName as ScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Scope.CollectScopeAddressesInUse'
)
)

And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null

)
)
)
)
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
<DataSet Name="SuperScopesInUse">
<Fields>
<Field Name="SuperScopesInUseCount">
<DataField>SuperScopesInUseCount</DataField>
<rd:TypeName>System.Double</rd:TypeName>
</Field>
<Field Name="SuperScopeName">
<DataField>SuperScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="DataDateTime">
<DataField>DataDateTime</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select Prf.SampleValue As SuperScopesInUseCount,
Ins.InstanceName As SuperScopeName,
Max(Prf.[Datetime]) As DataDateTime
From Perf.vPerfRaw Prf (NoLock)
Inner Join
(
Select RIn.PerformanceRuleInstanceRowId,RIn.InstanceName
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectSuperscopeAddressesInUse'
)
)
) As Ins
On Prf.PerformanceRuleInstanceRowId = Ins.PerformanceRuleInstanceRowId
Inner Join
(
Select distinct RIn.PerformanceRuleInstanceRowId as SuperScopeId,
RIn.InstanceName as SuperScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectSuperscopeAddressesInUse'
)
)
And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
And MPR.ToDateTime is null
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
And MPR.ToDateTime is null

)
)
)
)
) As FIL
On FIL.SuperScopeId = Prf.PerformanceRuleInstanceRowId
Where Prf.PerformanceRuleInstanceRowId in
(
Select RIn.PerformanceRuleInstanceRowId
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectSuperscopeAddressesInUse'
)
)
And (
(@SuperScopeName &lt;&gt; 'All' and RIn.InstanceName = @SuperScopeName) Or
(@SuperScopeName = 'All')
)
)
And DATEPART(year,Prf.[Datetime]) = DATEPART(year,@DateTimeToReport)
And DATEPART(month,Prf.[Datetime]) = DATEPART(month,@DateTimeToReport)
And DATEPART(day,Prf.[Datetime]) = DATEPART(day,@DateTimeToReport)
Group by Prf.PerformanceRuleInstanceRowId, Prf.SampleValue, Ins.InstanceName
Order by Ins.InstanceName
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
<QueryParameter Name="@SuperScopeName">
<Value>=Parameters!SuperScopeName.Value</Value>
</QueryParameter>
<QueryParameter Name="@DateTimeToReport">
<Value>=Parameters!DateTimeToReport.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
<DataSet Name="SuperScopesFree">
<Fields>
<Field Name="SuperScopesFreeCount">
<DataField>SuperScopesFreeCount</DataField>
<rd:TypeName>System.Double</rd:TypeName>
</Field>
<Field Name="SuperScopeName">
<DataField>SuperScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="DataDateTime">
<DataField>DataDateTime</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select Prf.SampleValue As SuperScopesFreeCount,
Ins.InstanceName As SuperScopeName,
Max(Prf.[Datetime]) As DataDateTime
From Perf.vPerfRaw Prf (NoLock)
Inner Join
(
Select RIn.PerformanceRuleInstanceRowId,RIn.InstanceName
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectFreeSuperscopeAddresses'
)
)
) As Ins
On Prf.PerformanceRuleInstanceRowId = Ins.PerformanceRuleInstanceRowId
Inner Join
(
Select distinct RIn.PerformanceRuleInstanceRowId as SuperScopeId,
RIn.InstanceName as SuperScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectFreeSuperscopeAddresses'
)
)
And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)

)
)
)
)
) As FIL
On FIL.SuperScopeId = Prf.PerformanceRuleInstanceRowId
Where Prf.PerformanceRuleInstanceRowId in
(
Select RIn.PerformanceRuleInstanceRowId
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Superscope.CollectFreeSuperscopeAddresses'
)
)
And (
(@SuperScopeName &lt;&gt; 'All' and RIn.InstanceName = @SuperScopeName) Or
(@SuperScopeName = 'All')
)
)
And DATEPART(year,Prf.[Datetime]) = DATEPART(year,@DateTimeToReport)
And DATEPART(month,Prf.[Datetime]) = DATEPART(month,@DateTimeToReport)
And DATEPART(day,Prf.[Datetime]) = DATEPART(day,@DateTimeToReport)
Group by Prf.PerformanceRuleInstanceRowId, Prf.SampleValue, Ins.InstanceName
Order by Ins.InstanceName
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
<QueryParameter Name="@SuperScopeName">
<Value>=Parameters!SuperScopeName.Value</Value>
</QueryParameter>
<QueryParameter Name="@DateTimeToReport">
<Value>=Parameters!DateTimeToReport.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
<DataSet Name="ScopesInUse">
<Fields>
<Field Name="ScopesInUseCount">
<DataField>ScopesInUseCount</DataField>
<rd:TypeName>System.Double</rd:TypeName>
</Field>
<Field Name="ScopeName">
<DataField>ScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="DataDateTime">
<DataField>DataDateTime</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select Prf.SampleValue As ScopesInUseCount,
Ins.InstanceName As ScopeName,
Max(Prf.[Datetime]) As DataDateTime
From Perf.vPerfRaw Prf (NoLock)
Inner Join
(
Select RIn.PerformanceRuleInstanceRowId,RIn.InstanceName
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Scope.CollectScopeAddressesInUse'
)
)
) As Ins
On Prf.PerformanceRuleInstanceRowId = Ins.PerformanceRuleInstanceRowId
Inner Join
(
Select distinct RIn.PerformanceRuleInstanceRowId as SuperScopeId,
RIn.InstanceName as SuperScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Scope.CollectScopeAddressesInUse'
)
)
And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)

)
)
)
)
) As FIL
On FIL.SuperScopeId = Prf.PerformanceRuleInstanceRowId
Where Prf.PerformanceRuleInstanceRowId in
(
Select RIn.PerformanceRuleInstanceRowId
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Scope.CollectScopeAddressesInUse'
)
)
And (
(@ScopeName &lt;&gt; 'All' and RIn.InstanceName = @ScopeName) Or
(@ScopeName = 'All')
)
)
And DATEPART(year,Prf.[Datetime]) = DATEPART(year,@DateTimeToReport)
And DATEPART(month,Prf.[Datetime]) = DATEPART(month,@DateTimeToReport)
And DATEPART(day,Prf.[Datetime]) = DATEPART(day,@DateTimeToReport)
Group by Prf.PerformanceRuleInstanceRowId, Prf.SampleValue, Ins.InstanceName
Order by Ins.InstanceName
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
<QueryParameter Name="@ScopeName">
<Value>=Parameters!ScopeName.Value</Value>
</QueryParameter>
<QueryParameter Name="@DateTimeToReport">
<Value>=Parameters!DateTimeToReport.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
<DataSet Name="ScopesFree">
<Fields>
<Field Name="ScopesFreeCount">
<DataField>ScopesFreeCount</DataField>
<rd:TypeName>System.Double</rd:TypeName>
</Field>
<Field Name="ScopeName">
<DataField>ScopeName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="DataDateTime">
<DataField>DataDateTime</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>
Select Prf.SampleValue As ScopesFreeCount,
Ins.InstanceName As ScopeName,
Max(Prf.[Datetime]) As DataDateTime
From Perf.vPerfRaw Prf (NoLock)
Inner Join
(
Select RIn.PerformanceRuleInstanceRowId,RIn.InstanceName
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Collect.FreeScopeAddresses'
)
)
) As Ins
On Prf.PerformanceRuleInstanceRowId = Ins.PerformanceRuleInstanceRowId
Inner Join
(
Select distinct RIn.PerformanceRuleInstanceRowId as SuperScopeId,
RIn.InstanceName as SuperScopeName
From vPerformanceRuleInstance RIn (NoLock)
Inner Join Perf.vPerfRaw PRW (NoLock)
On PRW.PerformanceRuleInstanceRowId = RIn.PerformanceRuleInstanceRowId
Inner Join Managedentity Met (NoLock)
On Met.ManagedEntityRowId = PRW.ManagedEntityRowId
Inner Join Managedentity TEN (NoLock)
On Met.TopLevelHostManagedEntityRowId = TEN.ManagedEntityRowId
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Collect.FreeScopeAddresses'
)
)
And TEN.Name in
(
Select Distinct MgEn.Name
From ManagedEntity MgEn (NoLock)
Inner Join vManagedEntityPropertySet MPR (NoLock)
On MPR.ManagedEntityRowId = MgEn.ManagedEntityRowId
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
WHERE
(
(
@FilterOption = 0 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
) Or
(
@FilterOption = 1 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
where MPR.ManagedEntityRowId
in
(
select ME.ManagedEntityRowId
from ManagedEntity ME (NoLock)
where ME.ManagedEntityTypeRowId in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.Library')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.Library.Server')
)
)
)
AND MPR.ManagedEntityRowId not in
(
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)
)
)
) Or
(
@FilterOption = 2 And
MPR.ManagedEntityRowId In
(
select distinct MPR.ManagedEntityRowId
From vManagedEntityPropertySet MPR (NoLock)
Inner Join vManagedEntityTypeProperty PrNm (NoLock)
On MPR.PropertyGUID = PrNm.PropertyGUID
Inner Join vManagedEntityType MET (NoLock)
On MET.ManagedEntityTypeRowId = PrNm.ManagedEntityTypeRowId
where MET.ManagedEntityTypeRowId
in
(
select MT.ManagedEntityTypeRowId
from vManagedEntityType MT (NoLock)
where MT.managementpackrowid
in (
select MP.managementpackrowid
from vManagementPack MP (NoLock)
where
(
MP.managementPackSystemName in ('Microsoft.Windows.DHCPServer.2008')
)
)
And ManagedEntityTypeSystemName in ('Microsoft.Windows.DHCPServer.2008.Server')
)

)
)
)
)
) As FIL
On FIL.SuperScopeId = Prf.PerformanceRuleInstanceRowId
Where Prf.PerformanceRuleInstanceRowId in
(
Select RIn.PerformanceRuleInstanceRowId
From vPerformanceRuleInstance RIn
Where RIn.RuleRowId In
(
Select Prl.RuleRowId
From vPerformanceRule Prl (NoLock)
Where Prl.RuleRowId in
(
Select Rls.RuleRowId
From vRule Rls (NoLock)
Where Rls.RuleSystemName = 'Microsoft.Windows.DHCPServer.Library.Collect.FreeScopeAddresses'
)
)
And (
(@ScopeName &lt;&gt; 'All' and RIn.InstanceName = @ScopeName) Or
(@ScopeName = 'All')
)
)
And DATEPART(year,Prf.[Datetime]) = DATEPART(year,@DateTimeToReport)
And DATEPART(month,Prf.[Datetime]) = DATEPART(month,@DateTimeToReport)
And DATEPART(day,Prf.[Datetime]) = DATEPART(day,@DateTimeToReport)
Group by Prf.PerformanceRuleInstanceRowId, Prf.SampleValue, Ins.InstanceName
Order by Ins.InstanceName
</CommandText>
<QueryParameters>
<QueryParameter Name="@FilterOption">
<Value>=Parameters!FilterOption.Value</Value>
</QueryParameter>
<QueryParameter Name="@ScopeName">
<Value>=Parameters!ScopeName.Value</Value>
</QueryParameter>
<QueryParameter Name="@DateTimeToReport">
<Value>=Parameters!DateTimeToReport.Value</Value>
</QueryParameter>
</QueryParameters>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
</DataSet>
</DataSets>
<Width>8.25in</Width>
<Body><Script>
<ReportItems>
<Table Name="table1">
<ZIndex>7</ZIndex>
<DetailDataElementOutput>NoOutput</DetailDataElementOutput>
<DataElementOutput>Output</DataElementOutput>
<DataSetName>ScopesFree</DataSetName>
<Visibility>
<Hidden>true</Hidden>
<ToggleItem>ScopesSection</ToggleItem>
</Visibility>
<DetailDataElementName>SuperScopesInUse</DetailDataElementName>
<Top>4.25in</Top>
<Width>8in</Width>
<Details>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox2">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!ScopeName.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox10">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!ScopesFreeCount.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox11">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Value>=Fields!DataDateTime.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
</Details>
<Style></Style>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
</Style>
<Header>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ColSpan>3</ColSpan>
<ReportItems>
<Textbox Name="textbox13">
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>6</ZIndex>
<CanGrow>true</CanGrow>
<Value>Scopes Free</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox14">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>Scope Name</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox15">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Value>Count</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox16">
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Value>Date</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.2in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Header>
<TableColumns>
<TableColumn>
<Width>2.375in</Width>
</TableColumn>
<TableColumn>
<Width>2.25in</Width>
</TableColumn>
<TableColumn>
<Width>3.375in</Width>
</TableColumn>
</TableColumns>
<DataElementName>SuperScopesFreeTable</DataElementName>
<Height>0.7in</Height>
<Left>0.125in</Left>
</Table>
<Table Name="table2">
<ZIndex>6</ZIndex>
<DetailDataElementOutput>NoOutput</DetailDataElementOutput>
<DataElementOutput>Output</DataElementOutput>
<DataSetName>ScopesInUse</DataSetName>
<Visibility>
<Hidden>true</Hidden>
<ToggleItem>ScopesSection</ToggleItem>
</Visibility>
<DetailDataElementName>SuperScopesInUse</DetailDataElementName>
<Top>3.5in</Top>
<Width>8in</Width>
<Details>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox17">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!ScopeName.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox18">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!ScopesInUseCount.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox19">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Value>=Fields!DataDateTime.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
</Details>
<Style></Style>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
</Style>
<Header>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ColSpan>3</ColSpan>
<ReportItems>
<Textbox Name="textbox20">
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>6</ZIndex>
<CanGrow>true</CanGrow>
<Value>Scopes In Use</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox21">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>Scope Name</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox22">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Value>Count</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox23">
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Value>Date</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.2in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Header>
<TableColumns>
<TableColumn>
<Width>2.375in</Width>
</TableColumn>
<TableColumn>
<Width>2.25in</Width>
</TableColumn>
<TableColumn>
<Width>3.375in</Width>
</TableColumn>
</TableColumns>
<DataElementName>SuperScopesInUseTable</DataElementName>
<Height>0.7in</Height>
<Left>0.125in</Left>
</Table>
<Textbox Name="ScopesSection">
<DataElementOutput>Output</DataElementOutput>
<Top>3.25in</Top>
<Width>8in</Width>
<Style></Style>
<BorderStyle>
<Default>Solid</Default>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>Solid</Top>
<Bottom>Solid</Bottom>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>11pt</FontSize>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<DataElementStyle>ElementNormal</DataElementStyle>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Left>0.125in</Left>
<DataElementName>Title</DataElementName>
<Height>0.25in</Height>
<Value>Scopes Details</Value>
</Textbox>
<Table Name="SuperScopesFreeTable">
<ZIndex>4</ZIndex>
<DetailDataElementOutput>NoOutput</DetailDataElementOutput>
<DataElementOutput>Output</DataElementOutput>
<DataSetName>SuperScopesFree</DataSetName>
<Visibility>
<Hidden>true</Hidden>
<ToggleItem>SuperScopesSection</ToggleItem>
</Visibility>
<DetailDataElementName>SuperScopesInUse</DetailDataElementName>
<Top>2.375in</Top>
<Width>8in</Width>
<Details>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox3">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!SuperScopeName.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox4">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!SuperScopesFreeCount.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox5">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Value>=Fields!DataDateTime.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
</Details>
<Style></Style>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
</Style>
<Header>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ColSpan>3</ColSpan>
<ReportItems>
<Textbox Name="textbox12">
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>6</ZIndex>
<CanGrow>true</CanGrow>
<Value>Super Scopes Free</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox6">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>Super Scope Name</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox7">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Value>Count</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox8">
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Value>Date</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.2in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Header>
<TableColumns>
<TableColumn>
<Width>2.375in</Width>
</TableColumn>
<TableColumn>
<Width>2.25in</Width>
</TableColumn>
<TableColumn>
<Width>3.375in</Width>
</TableColumn>
</TableColumns>
<DataElementName>SuperScopesFreeTable</DataElementName>
<Height>0.7in</Height>
<Left>0.125in</Left>
</Table>
<Table Name="SuperScopesInUseTable">
<ZIndex>3</ZIndex>
<DetailDataElementOutput>NoOutput</DetailDataElementOutput>
<DataElementOutput>Output</DataElementOutput>
<DataSetName>SuperScopesInUse</DataSetName>
<Visibility>
<Hidden>true</Hidden>
<ToggleItem>SuperScopesSection</ToggleItem>
</Visibility>
<DetailDataElementName>SuperScopesInUse</DetailDataElementName>
<Top>1.625in</Top>
<Width>8in</Width>
<Details>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="SuperScopeName">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!SuperScopeName.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="SuperScopesInUse">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!SuperScopesInUseCount.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="SuperScopesDate">
<Style></Style>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Value>=Fields!DataDateTime.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
</Details>
<Style></Style>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
</Style>
<Header>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ColSpan>3</ColSpan>
<ReportItems>
<Textbox Name="textbox9">
<rd:DefaultName>textbox9</rd:DefaultName>
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>6</ZIndex>
<CanGrow>true</CanGrow>
<Value>Super Scopes In Use</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox42">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>Super Scope Name</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox46">
<DataElementOutput>NoOutput</DataElementOutput>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Value>Count</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox1">
<rd:DefaultName>textbox1</rd:DefaultName>
<Style></Style>
<Color>White</Color>
<BackgroundColor>Gray</BackgroundColor>
<BorderColor>
<Default>DimGray</Default>
</BorderColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Value>Date</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.2in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Header>
<TableColumns>
<TableColumn>
<Width>2.375in</Width>
</TableColumn>
<TableColumn>
<Width>2.25in</Width>
</TableColumn>
<TableColumn>
<Width>3.375in</Width>
</TableColumn>
</TableColumns>
<DataElementName>SuperScopesInUseTable</DataElementName>
<Height>0.7in</Height>
<Left>0.125in</Left>
</Table>
<Textbox Name="SuperScopesSection">
<DataElementOutput>Output</DataElementOutput>
<Top>1.375in</Top>
<Width>8in</Width>
<Style></Style>
<BorderStyle>
<Default>Solid</Default>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>Solid</Top>
<Bottom>Solid</Bottom>
</BorderStyle>
<FontFamily>Tahoma</FontFamily>
<FontSize>11pt</FontSize>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<DataElementStyle>ElementNormal</DataElementStyle>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Left>0.125in</Left>
<DataElementName>Title</DataElementName>
<Height>0.25in</Height>
<Value>Super Scopes Details</Value>
</Textbox>
<Image Name="banner_image">
<Sizing>AutoSize</Sizing>
<Top>0.125in</Top>
<Width>8in</Width>
<MIMEType/>
<Source>External</Source>
<Style/>
<ZIndex>1</ZIndex>
<Left>0.125in</Left>
<Height>0.53958in</Height>
<Value>../banner_portrait.jpg</Value>
</Image>
<Rectangle Name="rectangle4">
<Left>0.125in</Left>
<ReportItems>
<Textbox Name="reportTitle">
<DataElementOutput>Output</DataElementOutput>
<Top>0.125in</Top>
<Width>7.8in</Width>
<Style></Style>
<FontFamily>Tahoma</FontFamily>
<FontSize>11pt</FontSize>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<DataElementStyle>ElementNormal</DataElementStyle>
<CanGrow>true</CanGrow>
<Left>0.125in</Left>
<DataElementName>Title</DataElementName>
<Height>0.25in</Height>
<Value>Microsoft Windows Server DHCP - Scopes Report</Value>
</Textbox>
</ReportItems>
<Top>0.75in</Top>
<Width>8in</Width>
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
</Style>
<Height>0.55in</Height>
</Rectangle>
</ReportItems>
<Height>5.25in</Height>
</Script></Body>
<Language>en-US</Language>
<PageFooter>
<PrintOnFirstPage>true</PrintOnFirstPage>
<ReportItems>
<Textbox Name="textbox37">
<Top>0.03125in</Top>
<Width>7.9625in</Width>
<Style></Style>
<Color>DimGray</Color>
<FontFamily>Tahoma</FontFamily>
<FontSize>8pt</FontSize>
<TextAlign>Right</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Left>0.125in</Left>
<Height>0.1875in</Height>
<Value>=Globals!ExecutionTime</Value>
</Textbox>
</ReportItems>
<Height>0.25in</Height>
<PrintOnLastPage>true</PrintOnLastPage>
</PageFooter>
<TopMargin>1in</TopMargin>
</Report>
</Definition>
</Report>