Thank you in advance for any feedback!
I am getting the following error when program reaches the line of code:
Dim result As Telerik.Reporting.Processing.RenderingResult = reportProcessor.RenderReport("PDF", oReportSource, deviceInfo)
Then, I tried stepping, and program goes to GetUserName() function. And after this is run the following message comes up. This is only happening with the new Telerik update of the Reporting Designer R2 2016.
ERROR: An exception of type 'System.IndexOutOfRangeException' occurred in Telerik.Reporting.dll but was not handled in user code
Additional information: Index was outside the bounds of the array.
Public Function TelerikReportDS(dObjs As DataObjects, reportName As String, Optional ByVal styleName As String = "") As System.IO.Stream
Dim oData As DataObjects = dObjs
Dim report As Telerik.Reporting.Report = GetReport(reportName)
If Not String.IsNullOrEmpty(styleName) Then report.StyleName = styleName
If Not report Is Nothing Then
Using ds As New Telerik.Reporting.ObjectDataSource
ds.DataSource = oData
Dim reportProcessor As New Telerik.Reporting.Processing.ReportProcessor()
Dim deviceInfo As New System.Collections.Hashtable()
report.DataSource = ds
Dim strName As String
Dim intCount As Integer
Dim bAttach As Boolean = False
Dim bHist As Boolean = False
Dim bProp As Boolean = False
Dim bStateActors As Boolean = False
If (reportName = "Binder.trdx") Then
For ii As Integer = 0 To dObjs(0).Properties.Count - 1
strName = dObjs(0).Properties(ii).Name
If (strName = "binderProperties") Then
intCount = dObjs(0).Properties(ii).Value.Count
If (intCount = 0) Then
bProp = False
Else
bProp = True
End If
End If
If (strName = "states") Then
intCount = dObjs(0).Properties(ii).Value.Count
If (intCount > 0) Then
For xx As Integer = 0 To dObjs(0).Properties(ii).Value.Count - 1
intCount = dObjs(0).Properties(ii).Value(xx).Properties.Count
If (intCount > 0) Then
For yy As Integer = 0 To dObjs(0).Properties(ii).Value(xx).Properties.Count - 1
strName = dObjs(0).Properties(ii).Value(xx).Properties(yy).Name
If (strName = "stateActors") Then
If (intCount = 0) Then
bStateActors = False
Else
bStateActors = True
End If
End If
Next yy
End If
Next xx
End If
End If
If (strName = "binderDispositionHistoryItems") Then
intCount = dObjs(0).Properties(ii).Value.Count
If (intCount = 0) Then
bHist = False
Else
bHist = True
End If
End If
If (strName = "snapshotObjects") Then
intCount = dObjs(0).Properties(ii).Value.Count
If (intCount = 0) Then
bAttach = False
Else
bAttach = True
End If
End If
Next ii
intCount = report.Items(2).Items.Count
For xx As Integer = 0 To report.Items(2).Items.Count - 1
strName = report.Items(2).Items(xx).Name
If (strName = "PropertiesTable") Then
report.Items(2).Items(xx).Visible = bProp
End If
If (strName = "AttachmentsTable") Then
report.Items(2).Items(xx).Visible = bAttach
End If
If (strName = "HistoryTable") Then
report.Items(2).Items(xx).Visible = bHist
End If
Next xx
End If
Dim oReportSource As New Telerik.Reporting.InstanceReportSource
oReportSource.ReportDocument = report
Dim result As Telerik.Reporting.Processing.RenderingResult = reportProcessor.RenderReport("PDF", oReportSource, deviceInfo)
Dim oMemoryStream As New System.IO.MemoryStream(result.DocumentBytes)
Return oMemoryStream
End Using
Else
Return Nothing
End If
End Function
---- User defined functions
Public Shared Function GetUserName(ByVal userID As String) As String
If String.IsNullOrEmpty(userID) Then Return ""
Dim oItem As NameLookupItem = _nameCache.FindItem(userID)
If Not oItem Is Nothing Then Return oItem.displayName
Dim oDA As New FHFATools.AD.ADCentralDA
Dim oDO As FHFATools.Database.DataObjects = oDA.GetDomainObjects2(userID)
If oDO.Count = 0 Then Return userID
Dim displayName As String = oDO(0).GetValueString("DisplayName")
If String.IsNullOrEmpty(displayName) Then displayName = userID
_nameCache.AddItem(userID, displayName)
Return displayName
End Function
Public Function FindItem(ByVal userID As String) As NameLookupItem
userID = userID.ToLower()
Dim oReturn As NameLookupItem = Nothing
For Each item As NameLookupItem In Me
If item.userID.Equals(userID) Then
oReturn = item
Exit For
End If
Next
If Not oReturn Is Nothing Then
If oReturn.lookupTime.AddMinutes(CACHE_TIME_MINUTES) < Date.Now() Then
Me.Remove(oReturn)
oReturn = Nothing
End If
End If
Return oReturn
End Function
11 Answers, 1 is accepted

<Report Width="7.53774642944336in" Name="MyItems" StyleName="" Zoom="2" xmlns="http://schemas.telerik.com/reporting/2012/3.9">
<Style>
<Font Name="Segoe UI" />
</Style>
<Items>
<DetailSection Height="0.100000381469727in" Name="detailSection1">
<Style Visible="False" />
</DetailSection>
<PageFooterSection Height="0.247916698455811in" Name="pageFooterSection1">
<Items>
<TextBox Width="3.10000038146973in" Height="0.19999997317791in" Left="4.39999961853027in" Top="0.047916729003191in" Value="Page {=PageNumber} of {=PageCount}" Name="TextBox14">
<Style TextAlign="Right">
<Font Name="Segoe UI" />
</Style>
</TextBox>
</Items>
</PageFooterSection>
<ReportHeaderSection Height="5.90000089009603in" Name="reportHeaderSection1" StyleName="">
<Style>
<BorderStyle Top="Solid" Bottom="Solid" Left="Solid" Right="Solid" />
<BorderColor Top="Black" Bottom="Black" Left="Black" Right="Black" />
<BorderWidth Default="0pt" Top="0pt" Bottom="0pt" Left="0pt" Right="0pt" />
</Style>
<Items>
<Table Width="6.63357997299755in" Height="0.317708448258637in" Left="0.800000111262004in" Top="0.750078757603963in" ColumnHeadersPrintOnEveryPage="True" Name="table1">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="6.63357997299755in" Height="0.317708448258637in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("Name")" Name="textBox2" StyleName="td-list">
<Style VerticalAlign="Top">
<Font Size="20pt" />
</Style>
</TextBox>
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="6.63357997299755in" />
</Columns>
<Rows>
<Row Height="0.317708448258637in" />
</Rows>
</Body>
<Corner />
<RowGroups>
<TableGroup Name="detailTableGroup">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="tableGroup2" />
</ColumnGroups>
<Bindings>
<Binding Path="DataSource" Expression="= ReportItem.DataObject" />
</Bindings>
</Table>
<PictureBox Width="0.75in" Height="0.75in" Left="0.00003941853841146in" Top="0in" Sizing="ScaleProportional" MimeType="image/png" Name="PictureBox1" />
<TextBox Width="6.32717307408651in" Height="0.199921160936356in" Left="1.10640668869019in" Top="1.90000025431315in" Value="= ReportItem.DataObject.RawData.GetValueString("StateName")" Name="textBox12" StyleName="td-cell">
<Style BackgroundColor="238, 238, 238" LineWidth="1px">
<BorderStyle Default="Solid" />
<BorderColor Default="Silver" />
<BorderWidth Default="1px" />
<Font Size="10pt" />
</Style>
</TextBox>
<TextBox Width="6.32717307408651in" Height="0.19992108643055in" Left="1.10640668869019in" Top="1.5in" Value="= ReportItem.DataObject.RawData.GetValue("DueDate")" Format="{0:M/d/yyyy}" Name="textBox9" StyleName="td-cell">
<Style BackgroundColor="238, 238, 238">
<BorderStyle Default="Solid" />
<BorderColor Default="Silver" />
<BorderWidth Default="1px" />
<Font Size="10pt" />
</Style>
</TextBox>
<TextBox Width="6.32717307408651in" Height="0.199921160936356in" Left="1.10640668869019in" Top="1.70000012715658in" Value="= Workflow.Objects.ReportHelper.GetUserName(ReportItem.DataObject.RawData.GetValue("Owner"))" Name="textBox7" StyleName="td-cell">
<Style BackgroundColor="238, 238, 238">
<BorderStyle Default="Solid" />
<BorderColor Default="Silver" />
<BorderWidth Default="1px" />
<Font Size="10pt" />
</Style>
</TextBox>
<Table Width="7.52919348145796in" Height="0.778125043094584in" Left="0.00726763407389323in" Top="3.20000012715658in" RowHeadersPrintOnEveryPage="False" ColumnHeadersPrintOnEveryPage="True" KeepTogether="False" Name="table2">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="1" RowSpan="1" ColumnSpan="1">
<ReportItem>
<PictureBox Width="0.239758544433492in" Height="0.23958332836628in" Left="0.100038210550944in" Top="3.80000019073486in" Name="pictureBox2" StyleName="">
<Style TextAlign="Center">
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<ConditionalFormatting>
<FormattingRule>
<Style>
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAUxJREFUOE+tlLFuAjEMhu8NeAPegFfgCXgD1k5IrBVbN4aOFVs3xMrAwFoxdb6VFYm5j+DmO+KQ+JzTqaqlfzjH/mInzjUi8q9ynapTe5LNcSPz93mnxcdCtuettLc2LPs5rhPQ9HUqzUtT1fJzKfefewgvc4sPtPvauQBPk/VELtdLSKsAazCqoc3Z26y3BjSvNMFIYNEmcHZqJHrQGFMCqcIGoqytzmpQbT0BvepUY6Crw4qlB5BgXeB2GRUrxiU3C9W2OyBjogskjzWgmkcXwfrAWPooy6eCzoI9gPlOSF9GLtuyHTFigj0vZehlMAG5efMaN3wCcdggFHdOVht+fd8JiLwq8XEkWA0WL7JjFEDGx5tHxoPLsn5dyxkFEAEdOs9c/M5i9Sm/gKkIoo3a66Gq/fc+hPZzew4rZpSzYwMgQz9X5Dr/Lml+AR545pkAEDYjAAAAAElFTkSuQmCC" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule>
<Style>
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAQhJREFUOE+tlL0RgkAQRimBEiiBFuiAEiiBChhDQ0NnSAwlMyQzIzOTzMyAGVMLWPl2Zp1jWfBAgnfc3bDv9n4DItoUs/MfvpWyvFGanilJTl7gf4l14SLP6762ozg+msEWIsyyC0XRgZrmye2gbV8sK4ordywBMsSCMNwTu+r6wR346oA5XJmALFcJLZkswUjYdW9CQFXdua2Zk4GBEDJsjPUj+CUDAyGymgrwkYHRlK1AHBPdBxlmJCLB3BRL6uJmrY+bKQRTUneaaHsLgZbqNVssBCI1N8AS8umeCBCsxZcrO8oaBXYRdxGPBEb0AQ8CYvRgXMjtwIi+IAl5YVwGjS0wO9dDwQdh6BkOGaX78wAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule>
<Style>
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAADxJREFUOE+tyDEBACAABCH7l34LMHkOLJxtXzELZsEsmAWzYBbMglkwC2bBLJgFs2AWzIJZMAtmwXy3cwFE46uNMC+m2QAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule>
<Style>
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAXxJREFUOE+tlDFuwkAQRTkCR+AGnIETcAVuwAk4AVQpXaUkVUpX6UJFFQkpXbqIIm36Yd5qvzW7XruIMtIHMzvz5/+xzcLM/hXNpPDV9/Z+ONjLZpPwut3a9XSyn9vNj9s9zSRE3WplRz+eQr/b2e/97uVlb/EDfHTdqPl5vU4K6yFPy6V9Xy7eNkEYySjGblYxBARYj3VR6UDGXjisJk9GHI56j5KQnaiAHRKQYlPkkFCniEplfSCUujwtFUTF2FezSHGl3Nt+T8qv/INmHaCCiIQ1uEkKBJCT7USIRRXLLtEihSzeKK2KOg+/miFsPUI05n2l0B7ZtYdf+QcT1cCuiDikRlaTAsXkCstAD22elGypmG8GyL72HIfySnr4VSYkUR0mUu6edoZVkREaCPR+D4QgvloibQUD4jOY15Q4CsL6rrIXFOXpySLNsQaV9AoFIYA0Kp0DKvM6hv6CTKCoVhKBqs/z2UvHvaNEDWximwGQzP25gmby77DFA+c2Lbkg8mGBAAAAAElFTkSuQmCC" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
<FormattingRule>
<Style>
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAASFJREFUOE+llNEJwjAQhl3BEdzACRzABdzCCZzACVzBafooiCAioggi+NIHH+L9d029JD+1auDT9G/u792l6SCE0I/nWf6InkHFBBhthyFs5PK+EomscVAx4TQzM7AbiUTWOKjYUldvs8h1IbfI2gYqthynpSHK7+gnFZXHujSLXOayhMQIVFQOEwvej80AxIyRJdpB4gpBwW6m2djwWWOzSGwhKNjNT4aAZJlcKLdlGmSZ2MgN0ZYsPrlIXuI0yAay9fcAHuI82onCAj4ZZlm2E+1Hnh2AhiDge+tBmwpDf8Q8fQzdkdQfesQiVpINVnKkOZIyE0MEsUWgryEqkU3tPmIA5cAIdD0YyBr+AfgVybK73G9RQ7zMaGgs6x/qKrwAA8TA1JW+P0IAAAAASUVORK5CYII=" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</PictureBox>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="3" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.882626392006926in" Height="0.23958332836628in" Left="0.999961694081624in" Top="0.199999809265137in" Value="= ReportItem.DataObject.RawData.GetValue("DueDate")" Format="{0:MM/dd/yyyy}" CanGrow="False" TextWrap="False" Name="textBox18" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</TextBox>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="2" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="2.92717364627934in" Height="0.23958332836628in" Left="0in" Top="0in" Value="= RowNumber(ReportItem.DataObject.RawData.GetValue("StateID")) + ". " + ReportItem.DataObject.RawData.GetValueString("StateName")" Name="textBox28" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Font Size="12pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<ConditionalFormatting>
<FormattingRule>
<Style>
<Font Name="Segoe UI" Bold="True" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</TextBox>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="5" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1.05586609863313in" Height="0.23958332836628in" Left="0in" Top="0in" Value="= IIf(ReportItem.DataObject.RawData.GetValueString("BinderStateStatus") = "current","IP", IIf( ReportItem.DataObject.RawData.GetValueString("BinderStateStatus") = "accept", "Comp. OK",IIf(ReportItem.DataObject.RawData.GetValueString("BinderStateStatus") = "warning", "Comp. W", IIf(ReportItem.DataObject.RawData.GetValueString("BinderStateStatus") = "reject", "Comp. C", IIf(ReportItem.DataObject.RawData.GetValueString("BinderStateStatus") = "pending", "Pending","")))))" Name="textBox31" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</TextBox>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="4" RowSpan="1" ColumnSpan="1">
<ReportItem>
<Table Width="2.31960112814226in" Height="0.23958332836628in" Left="4.19996070861816in" Top="0.199920972188314in" Name="AssigneeTable" StyleName="">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="1" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="2.10827196819298in" Height="0.23958332836628in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("ADObject_DisplayName")" Name="textBox38" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<PictureBox Width="0.211329211796411in" Height="0.23958332836628in" Left="0.506210962931315in" Top="0.160337766011556in" Name="pictureBox4" StyleName="">
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAPBJREFUOE+lkj0OgkAUhPcG3IAbcAVOwA1orUhsDZ0dhaWhsyO2FhS2hsqa1taE2iM8+Qy7eQtrItHkS2TezOwPGBH5i6C4hqBoaftWYK5rFsLwGqQ4FxJtIzEb48hPufTPfrT4fu+BcLJPvKCG0u7RjdYvBekhDQY1LKAz7g/NoQDYlTkGz829GSOzgupaOXN5Kd0dqG2L9TAnA64AkWF9qxl+QvEudmF05pAdMyS/wBr0ilwqPx2G4A54RdagS+ZhmGZ+AdhjACV8DzoIevvgFYC96RC85ulYzu+FLXy+rMQugOB0uQvvQlhLUPwdMW8hQJizV+S4lgAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="1" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAO1JREFUOE+lUjEOgkAQ5An8hDfwAr7AD3gBL5DKksoSK0oqO6msTEjs7AyFrf16Q5zL7nEmEjeZ5BhmZ2c5EhH5C1FyC6IkcR8GAUJeY0W85llOVSX7NJWde00MZSnPaXISqzcPaD5kmWnUgOljHJ30i8Exz724LwpzZiIM0D3+AGc2XJrGUSLXtl2io25d59/j7MoaoIkCTME6rHC1c12DtgYgKVCipfR0ACu5sgaISwFjYzKT6ITRBLgibcDYXEcb6JvwBkC4Rgw6PmAMAEyPNQK45s9KXm+aCfy+vHsAjfhGoQ5YEVsRJX+HJG/KXLBgFtuSHwAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="2" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAANdJREFUOE+lkTEKAkEMRbf3AB7Aa9h7AU/hPbSy0QOIhZW9YCEIgiKCYGFnsaC9drbRF8gwMxt2BYs3mfz5yWR2CxH5C1c0nvf9N/hnhivCbTeU9aglxPwsxhXfr1I247Y2IJLnHsMVr6uBFhvkuceoCHb7YdbVQmLdFBXhvOzHt2okR+c8J0n46tnYoQF4fyVJTotebQPO8cWEzeMyD0bYTjv6fmKs47MaCBvMsZE3Y7ZvYuCzGtClPE4SE3hPMPBTB7rkYzaBP2mQj99E/Axd/sEVf0eKD3x31lkfY5+cAAAAAElFTkSuQmCC" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="3" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</PictureBox>
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="0.211329229078785in" />
<Column Width="2.10827182993397in" />
</Columns>
<Rows>
<Row Height="0.23958332836628in" />
</Rows>
</Body>
<Corner />
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<RowGroups>
<TableGroup Name="detailTableGroup4">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="tableGroup7" />
<TableGroup Name="tableGroup8" />
</ColumnGroups>
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
<Bindings>
<Binding Path="DataSource" Expression="= ReportItem.DataObject.RawData.GetValue("stateActors")" />
</Bindings>
</Table>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.104166664774567in" Height="0.23958332836628in" Left="0in" Top="0in" Name="textBox33" StyleName="">
<Style TextAlign="Center">
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0pt" Bottom="1pt" />
<Padding Top="0px" Bottom="0px" />
</Style>
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 254, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="current" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="251, 251, 251" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="pending" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="253, 253, 255" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="accept" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 255, 247" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="warning" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="255, 245, 245" />
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValueString("BinderStateStatus")" Operator="Equal" Value="reject" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</TextBox>
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="0.104166650317047in" />
<Column Width="0.23975866504068in" />
<Column Width="2.92717469395535in" />
<Column Width="0.882626637871731in" />
<Column Width="2.3196005672666in" />
<Column Width="1.05586614780071in" />
</Columns>
<Rows>
<Row Height="0.239583341541894in" />
</Rows>
</Body>
<Corner />
<RowGroups>
<TableGroup Name="detailTableGroup2">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="group7">
<ReportItem>
<TextBox Width="7.52919358663958in" Height="0.298958360010795in" Left="0in" Top="3.15in" Value="Process" Name="sectionHeader3" StyleName="SectionHeader">
<Style>
<BorderStyle Bottom="Solid" />
</Style>
</TextBox>
</ReportItem>
<ChildGroups>
<TableGroup Name="group">
<ReportItem>
<TextBox Width="0.104166664774567in" Height="0.23958332836628in" Left="0in" Top="0in" Name="textBox29" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
<TableGroup Name="group1">
<ReportItem>
<TextBox Width="0.239758544433492in" Height="0.23958332836628in" Left="0in" Top="0in" Name="textBox6">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="1pt" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
<TableGroup Name="group2">
<ReportItem>
<TextBox Width="2.92717364627934in" Height="0.23958332836628in" Left="0in" Top="0in" Value="Step" Name="textBox22" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="1pt" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
<TableGroup Name="group21">
<ReportItem>
<TextBox Width="0.882626392006926in" Height="0.23958332836628in" Left="0in" Top="0in" Value="Due Date" Name="textBox21">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="1pt" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
<TableGroup Name="group22">
<ReportItem>
<TextBox Width="2.3196017997738in" Height="0.23958332836628in" Left="0in" Top="0in" Value="Assignee" Name="textBox32" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
<TableGroup Name="group23">
<ReportItem>
<TextBox Width="1.05586609863313in" Height="0.23958332836628in" Left="0in" Top="0in" Value="Status" Name="textBox30" StyleName="">
<Style>
<BorderStyle Bottom="Solid" />
<BorderWidth Default="1pt" />
</Style>
</TextBox>
</ReportItem>
</TableGroup>
</ChildGroups>
</TableGroup>
</ColumnGroups>
<Bindings>
<Binding Path="DataSource" Expression="=ReportItem.DataObject.RawData.GetValue("states").FindObjects("isBinderStateAccessible",true)" />
</Bindings>
</Table>
<TextBox Width="7.3242015838623in" Height="0.200000122189522in" Left="0.109377861022949in" Top="2.10000038146973in" Value="= ReportItem.DataObject.RawData.GetValueString("Description")" Name="textBox34" />
<TextBox Width="7.5334906578064in" Height="0.332133919000626in" Left="0in" Top="1.06786600748698in" Value="Information" Name="sectionHeader1" StyleName="SectionHeader" />
<TextBox Width="4.60000022252401in" Height="0.75in" Left="0.800000031789144in" Top="0in" Value="eClearance" TextWrap="False" Name="TextBox1">
<Style VerticalAlign="Middle">
<Font Name="Segoe UI Light" Size="36pt" />
</Style>
</TextBox>
<PictureBox Width="0.3in" Height="0.287787157694499in" Left="0.5in" Top="0.85in" Name="pictureBox5">
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="" Color="White">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAA7lJREFUSEvtlW9MlWUYxi/eczj8OweMQA6gZsMZMaboZLUYBToFsdjQOWJjsSKTSWtCA2VGgYBtKKKom7P8wAeaLlG3WouyttyKWuKHCD8UrI0ialP6x/hzzuG9u+73wCzG4UjzY9f22zl73/d57ue+r+d+Hvyv+yU7iSMPkXgSQu6rNEA6OUQukBaykiwUKJIsn/29ZzlICekhn5Pr5CfSQJaRfyoWhrEfNvs7/K9jwqynQaQfZZNPSOvs/0LyDekmqUSzVMXAcFTBvW4Qa3LGERX/GZ/lk1Dr7SLS+p8ln5JMogM2kEvkS9JEtpPHAGMv4tMHUHTSi/JuQVrhOAz7h3ynZbaRgNpI+shlwomwiqjpmlEb0UBfkI8QYvyM3FofWkYErWOC0k5B7OoJvqsjMSSg0ohmcYtcJVqy1cQgD5KX6X0/DJsX4S7BC1cEbX8JTs0IGocFT1X7EOrUbB4mAaU7ZCvpJL2z7CG6GWiyoxbutEFkV87g6WbBtjpByVuCV3sFR34VvD40g/TCUYTFlvP7aBJQan4iySEa7D3ypGXyiszvsLPDg+YfBcd+F7wxKCi/JNjBgAVNgue6TOS95oXL/THH5BHdjYv2l4toFjf5XTcS0m+hiAGa6MFpU3CGaJmOMlhtn6D4rCC/XpC1T+B037HGAMUkigSU+rCF3KDJk9h8wIfmEROndHLxBzgx5f/t8NKbcbEyfP5dQfIGkzttlGOPk1gSUEzVqKDJo3BECcq6BO0TzIIBlJOc/PAPDOS5+0wXUP+9YO02D+zhWrIniC52QdFkexXiUgawqdSLnCqafEjw5ujdCTsYpH3SP7EVlMEauMM2H5yCM0l3mDZxuDXbPKlJLh4VVVieOsgd5EUDzT3MwVsPCvZf52Qs0dyq1Rul9TfBS+8L1j/rhTPxGmy2XM6jXixounbqI8yiBynZ09hzmbvoDxMdPhOl503sbDfRxIBzq1c0QNlFE2vzxuCI1uNoFwlqdjIX0MgdMoSNJT68yEAtvwhqvjbZHyYqPmCppv0BtESagRXApYdkFtESBb0W9AO9RxphCxvmATiNgiNe1PWbyH3FZAlNq0c0G+3yjGIPwq0MNMCiZ9Z8aaAHyA6EhLyNsOh+ZOz+E5mlPmKimh3ewJ2lJrvogb9EEeQ/SbvfTR5HREwzIpZ9i+ikCaTmCx59xsOS9sya7CRBSxRMeockkUo25lfsgdsIjdQ+0G26pBsxmHSlevTXkHNEG+2ebsKlSjNKIHq5Bezkfwv4GwA2bFaZ7t/XAAAAAElFTkSuQmCC" Repeat="NoRepeat" MimeType="image/png" />
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Filters>
<Filter Expression="=ReportItem.DataObject.RawData.GetValueString("ColorScheme")" Operator="Equal" Value="blue" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="" Color="White">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAitJREFUSEvt1M9LFHEYx/HH3BLdikSL8CBECx6C2EIFPUkgEnQJOuipSAjxFhHUoQ5donYRkUWMKAWRKCgvFfgDlOrsxf4AT+IppEMW5U7vz3dm2GHZnZ2FOgQ98HJ2nZ3nmef5fmfsf/xT0YDTGMUw0qgWjTjif0weB/EQ31EMvMMBlEcKs5h23xKG7qoAD69wHlP4imOIRlhAv/2BPiSKXvzEM+jONbYn2IPGdggKdTvLX8/G6LTLdfsR4fnYyEMJO9w3v8g4tqBEG7iMOdJ5dgurmLB9ZqDzN1AzJvENV3AXZ6A4jGgxj76KthIU0fEihcy2cRyxkcUOdIGSaV3UjUJrsOBGlOFcM8chfvccKvKC/x1118wgvKZqtOIsnkKj02d/kVMku4ll5EiehYoNumJFetXNaVf2IFFkoNGpm1IBjSe0RGIVOxcU6+fYyNHsE8JR1wx/O2tE5QWilpB3xYrsSRURdXUJsaFtOg/PLnBxpeTlNMarLrmKrCPuTRGsgbbpAE5Q5E2CQo/QArM1tChRtfALaER6Dt5Cu+kad1gpcegx6iqguUbX4D5F2vG6Sjc5pOGPKLaAoguf2eV62PZtMUjyHhlcr9BNqcAHxK5BNHQnt7FrJ7nze9Du0bENi5FCGlGpgN4KdUcnXtLVL+smeQGnEK5NaZFr7qJaodfDEDbdTtMDp27UVcJFrieacAdf4AUP3B8tEI0RhCP6KwUU6ugBEq6B2W8wjBX4E16J9wAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Filters>
<Filter Expression="=ReportItem.DataObject.RawData.GetValueString("ColorScheme")" Operator="Equal" Value="green" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="" Color="White">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAnxJREFUSEvtlE1IVFEYhr/mN3SmjKhIRIgCqVBKsAzaZFAQEglCP4sIJBdB5Sa0loPUpsgkIisbQVo4tLVFPygVkZsiMmsZLSKiIiKyGM85ve85XrnZzJ07UIugFx7uvXPnfO/5fu6R//qntACsBh1gH6gExRQFaXcbXnFwBnwHepZREAHzFQNZcMk+hRR3dREYkAONoB98AVXAL8+A//0BtoBQ2gTyYBBw5yzbAJgGLFsCUMw2m0yIOdctuqneZvsAeO8DdRYwYLV9ciZHwGvAQE9AGxhamBRzrVeMeSVmfFhUPGbfd4KS6gPfQDs4CdYDKgX8ZqanU7R+6UzUlJiOdlH4/S1YBgK1AbwDXMBg7AuzodiDGyzRxrWi05ViDrWJmhoVRZM3Y6KXVtk1l4G3pqiWgAZwFbB0vLdNTsTFXMmImXkh5t6QqG2bRdHs4B6Y3RLdf8pujlPZBEJpDWDpmI01GIABy+MBM303K6ql2ZntbhEVi9ppewi8UpeUHWeWiBn4DfzkZzPb3iw66kwIs2oFgeKYDgNzoFV0oeDzYRkzR21wmoyDoJPC9YBjuneXmNqVoj88Lm10e1DMIpQNa8dABQMVkzVgifgdfH3qpqn3uKhCgT3uXIdBqgyDSOTXHty8ILpmhej3jwpng36Yxem5EgUaUHVgkibdh0V9nHBBpp+JaVwn5nTX79n4DO6DwB74xZ2cAJ9X1YjOnRednxQzgmv1ctEwnjNiiXwGPBXKVi0YQVYzO7aKnsiJbqhDb445E9tk14OSU1RKPB52guectFSFGGaT6xMddorKURL0gE/AsGe4/lEDv/YDr0R/xYBiRhkQsgciPwEaiXnuAXB4ZQAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Filters>
<Filter Expression="=ReportItem.DataObject.RawData.GetValueString("ColorScheme")" Operator="Equal" Value="manilla" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="" Color="White">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAjRJREFUSEvtlE1IFVEYhk9qFtqPIm1EBDFwEYgGCi5VsI0IQmC5CCFw0T60bYhtDERE1AoFcaG0dWOJUm3ctDFcS4sQ0RCRUtQ5Pe+ZO3ISZ+5cqIXgCw8zc+ee7z3fzxxzqQulK1ANT+ERFEOc8uFmeJteV+EVHECQYQHy4KwKYArG3FNKaVejYGEe7sMI7EEJ+IoM9N9DaIJUaoQjeAfauco2Ab9BZSsESdlOXcPgNZk2hNl+huh9ooZAAcvdU2jyDDZAgb5CJ0xfx+AtkIZdMeYEV73vhawahl/wEF7APZBugG9m+7ly40xOgAnhYn7AHUhUHWyCFiiY+qJsJPVgViWq5x3jZHv43zrI5Du/lYVrxiFaE6tSqIU3oNLp3jWZgttJOIYlgjeDzJ6EZgETos1pKmlTOt0FlU7ZOAMmwJUnArPgI4FbMmYdXNkNr8wXiEqdVW6cVSJl4Bv4MI4us1ZM+Qb4yaGs2iFRGtMZsN0s9oPGoTK+DIPzaBi6xJMi7IHGtAsqMdlOYbQIt4C1y1CkQHFyBiqRvoN90DQNsMOzQX0+QE4GfOp/9eA9JhWwFZMN/bC3gbUqUaKBVAPfZNLHzncyQZhjyyFmB8/JxjP4BIk98KWdPIfdKnbO/AaanjmunDUBxqdGKpFnoFMhZ9FvM0dWx20EXwW+ytPeeE3OOkXZpOPhAaxp0tiqVTbKLm2TcxHDZjgTzU+w6hnXf2rg6zFEJfovBpIy4qNO2wNj/gDXbS2x/0wocQAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Filters>
<Filter Expression="=ReportItem.DataObject.RawData.GetValueString("ColorScheme")" Operator="Equal" Value="red" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</PictureBox>
<Table Width="7.52919533064515in" Height="0.668749990907334in" Left="0.00855000813802083in" Top="2.39999993642171in" Name="PropertiesTable">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="1" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1.81629842934945in" Height="0.239583333171608in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("ProcessProperty") + ": "" Name="textBox11" StyleName="td-cellLabel" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="2" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.105598755839819in" Height="0.239583333171608in" Left="0in" Top="0in" Name="textBox19" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="3" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="5.39753144739004in" Height="0.239583333171608in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("FormattedValue")" Name="textBox27" StyleName="td-cell" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.105598783888253in" Height="0.239583333171608in" Left="0in" Top="0in" Name="textBox41" StyleName="" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="4" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.104166654324841in" Height="0.239583333171608in" Left="0in" Top="0in" Name="textBox57" StyleName="" />
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="0.105598822149149in" />
<Column Width="1.81629838903063in" />
<Column Width="0.105598780076491in" />
<Column Width="5.39753241806443in" />
<Column Width="0.104166668888505in" />
</Columns>
<Rows>
<Row Height="0.23958332622637in" />
</Rows>
</Body>
<Corner />
<RowGroups>
<TableGroup Name="detailTableGroup3">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="group6">
<ReportItem>
<TextBox Width="7.52919565320219in" Height="0.32500002016805in" Left="0in" Top="2.39999993642171in" Value="Properties" Name="sectionHeader2" StyleName="SectionHeader" />
</ReportItem>
<ChildGroups>
<TableGroup Name="group9">
<ReportItem>
<TextBox Width="0.105598783888253in" Height="0.104166671050503in" Left="0in" Top="0in" Name="textBox8" StyleName="" />
</ReportItem>
</TableGroup>
<TableGroup Name="group24">
<ReportItem>
<TextBox Width="1.81629842934945in" Height="0.104166671050503in" Left="0in" Top="0in" Name="textBox10" />
</ReportItem>
</TableGroup>
<TableGroup Name="group25">
<ReportItem>
<TextBox Width="0.105598755839819in" Height="0.104166671050503in" Left="0in" Top="0in" Name="textBox15" />
</ReportItem>
</TableGroup>
<TableGroup Name="group26">
<ReportItem>
<TextBox Width="5.39753144739004in" Height="0.104166671050503in" Left="0in" Top="0in" Name="textBox20" />
</ReportItem>
</TableGroup>
<TableGroup Name="group27">
<ReportItem>
<TextBox Width="0.104166654324841in" Height="0.104166671050503in" Left="0in" Top="0in" Name="textBox49" StyleName="" />
</ReportItem>
</TableGroup>
</ChildGroups>
</TableGroup>
</ColumnGroups>
<Bindings>
<Binding Path="DataSource" Expression="=ReportItem.DataObject.RawData.GetValue("binderProperties").FindObjects("canView",true)" />
</Bindings>
</Table>
<TextBox Width="0.91in" Height="0.2in" Left="0.11in" Top="1.5in" Value="Due Date:" Name="textBox3" StyleName="td-cellLabel" />
<TextBox Width="0.91in" Height="0.2in" Left="0.109377861022949in" Top="1.69992144902547in" Value="Owner:" Name="textBox4" StyleName="td-cellLabel" />
<TextBox Width="0.91in" Height="0.2in" Left="0.109377861022949in" Top="1.89992157618205in" Value="Current State:" Name="textBox5" StyleName="td-cellLabel" />
<Table Width="7.5364606315123in" Height="0.814583449265896in" Left="0in" Top="4.05000019073486in" Name="AttachmentsTable">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.104166709932522in" Height="0.239583333333333in" Left="0in" Top="0in" Name="textBox16" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="1" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="2.40625186891914in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("ObjectName")" Name="textBox23" StyleName="td-Value1" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="2" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.927085501823087in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("ObjectDataSizeFormatted")" Name="textBox25" StyleName="td-Value1" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="3" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= Workflow.Objects.ReportHelper.GetUserName(ReportItem.DataObject.RawData.GetValue("ModifiedBy"))" Name="textBox35" StyleName="td-Value1" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="4" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValue("ModifiedOn")" Format="{0:MM/dd/yyyy}" Name="textBox37" StyleName="td-Value1" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="5" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="2.09895827890736in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("RecordFilePlan_Name")" Name="textBox40" StyleName="td-Value1" />
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="0.104166554944629in" />
<Column Width="2.40625124661396in" />
<Column Width="0.92708496898in" />
<Column Width="0.999999691122134in" />
<Column Width="0.999999691122134in" />
<Column Width="2.0989583453708in" />
</Columns>
<Rows>
<Row Height="0.2395834259803in" />
</Rows>
</Body>
<Corner />
<RowGroups>
<TableGroup Name="detailTableGroup1">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="tableGroup1">
<ReportItem>
<TextBox Width="7.53646044200265in" Height="0.335416670134732in" Left="0in" Top="4.05000019073486in" Value="Attachments" Name="textBox55" StyleName="SectionHeader" />
</ReportItem>
<ChildGroups>
<TableGroup Name="group3">
<ReportItem>
<TextBox Width="0.104166709932522in" Height="0.239583333333333in" Left="0in" Top="0in" Name="textBox13" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group4">
<ReportItem>
<TextBox Width="2.40625186891914in" Height="0.239583333333333in" Left="0in" Top="0in" Value="Name" Name="textBox17" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group5">
<ReportItem>
<TextBox Width="0.927085501823087in" Height="0.239583333333333in" Left="0in" Top="0in" Value="Size" Name="textBox24" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group18">
<ReportItem>
<TextBox Width="1in" Height="0.239583333333333in" Left="0in" Top="0in" Value="Modified By" Name="textBox26" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group19">
<ReportItem>
<TextBox Width="1in" Height="0.239583333333333in" Left="0in" Top="0in" Value="Modified On" Name="textBox36" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group20">
<ReportItem>
<TextBox Width="2.09895827890736in" Height="0.239583333333333in" Left="0in" Top="0in" Value="Record File Plan" Name="textBox39" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
</ChildGroups>
</TableGroup>
</ColumnGroups>
<Bindings>
<Binding Path="DataSource" Expression="=ReportItem.DataObject.RawData.GetValue("snapshotObjects")" />
</Bindings>
</Table>
<Table Width="7.53125364364116in" Height="0.819791775675174in" Left="0in" Top="4.95in" RowHeadersPrintOnEveryPage="True" ColumnHeadersPrintOnEveryPage="True" KeepTogether="False" Name="HistoryTable">
<Body>
<Cells>
<TableCell RowIndex="0" ColumnIndex="0" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.104166708019905in" Height="0.239583333333333in" Left="0in" Top="0in" Name="textBox43" StyleName="td-Value2" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="1" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="0.723959682436074in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValue("DispositionDate")" Format="{0:M/d/yyyy}" Name="textBox45" StyleName="td-Value2" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="2" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1.13541786949154in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= Workflow.Objects.ReportHelper.GetUserName(ReportItem.DataObject.RawData.GetValue("UserID"))" Name="textBox47" StyleName="td-Value2" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="5" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1.44270756038326in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("StateName")" Name="textBox51" StyleName="td-Value2" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="6" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="2.78125024172617in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("Comments")" Name="textBox53" StyleName="td-Value2" />
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="3" RowSpan="1" ColumnSpan="1">
<ReportItem>
<PictureBox Width="0.218750101806721in" Height="0.239583333333333in" Left="0in" Top="0in" Name="pictureBox3" StyleName="">
<ConditionalFormatting>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAPBJREFUOE+lkj0OgkAUhPcG3IAbcAVOwA1orUhsDZ0dhaWhsyO2FhS2hsqa1taE2iM8+Qy7eQtrItHkS2TezOwPGBH5i6C4hqBoaftWYK5rFsLwGqQ4FxJtIzEb48hPufTPfrT4fu+BcLJPvKCG0u7RjdYvBekhDQY1LKAz7g/NoQDYlTkGz829GSOzgupaOXN5Kd0dqG2L9TAnA64AkWF9qxl+QvEudmF05pAdMyS/wBr0ilwqPx2G4A54RdagS+ZhmGZ+AdhjACV8DzoIevvgFYC96RC85ulYzu+FLXy+rMQugOB0uQvvQlhLUPwdMW8hQJizV+S4lgAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="1" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAAO1JREFUOE+lUjEOgkAQ5An8hDfwAr7AD3gBL5DKksoSK0oqO6msTEjs7AyFrf16Q5zL7nEmEjeZ5BhmZ2c5EhH5C1FyC6IkcR8GAUJeY0W85llOVSX7NJWde00MZSnPaXISqzcPaD5kmWnUgOljHJ30i8Exz724LwpzZiIM0D3+AGc2XJrGUSLXtl2io25d59/j7MoaoIkCTME6rHC1c12DtgYgKVCipfR0ACu5sgaISwFjYzKT6ITRBLgibcDYXEcb6JvwBkC4Rgw6PmAMAEyPNQK45s9KXm+aCfy+vHsAjfhGoQ5YEVsRJX+HJG/KXLBgFtuSHwAAAABJRU5ErkJggg==" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="2" />
</Filters>
</FormattingRule>
<FormattingRule StopIfTrue="True">
<Style BackgroundColor="">
<BackgroundImage ImageData="iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvAAADrwBlbxySQAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAAANdJREFUOE+lkTEKAkEMRbf3AB7Aa9h7AU/hPbSy0QOIhZW9YCEIgiKCYGFnsaC9drbRF8gwMxt2BYs3mfz5yWR2CxH5C1c0nvf9N/hnhivCbTeU9aglxPwsxhXfr1I247Y2IJLnHsMVr6uBFhvkuceoCHb7YdbVQmLdFBXhvOzHt2okR+c8J0n46tnYoQF4fyVJTotebQPO8cWEzeMyD0bYTjv6fmKs47MaCBvMsZE3Y7ZvYuCzGtClPE4SE3hPMPBTB7rkYzaBP2mQj99E/Axd/sEVf0eKD3x31lkfY5+cAAAAAElFTkSuQmCC" Repeat="NoRepeat" MimeType="image/png" />
</Style>
<Filters>
<Filter Expression="= ReportItem.DataObject.RawData.GetValue("DispositionTypeID")" Operator="Equal" Value="3" />
</Filters>
</FormattingRule>
</ConditionalFormatting>
</PictureBox>
</ReportItem>
</TableCell>
<TableCell RowIndex="0" ColumnIndex="4" RowSpan="1" ColumnSpan="1">
<ReportItem>
<TextBox Width="1.12500027687222in" Height="0.239583333333333in" Left="0in" Top="0in" Value="= ReportItem.DataObject.RawData.GetValueString("StateDispositionName")" Name="textBox56" StyleName="td-Value2" />
</ReportItem>
</TableCell>
</Cells>
<Columns>
<Column Width="0.104166486405141in" />
<Column Width="0.723959033220715in" />
<Column Width="1.13541714830849in" />
<Column Width="0.218750134877538in" />
<Column Width="1.12500025277424in" />
<Column Width="1.44270737418582in" />
<Column Width="2.78125319984117in" />
</Columns>
<Rows>
<Row Height="0.239583419549167in" />
</Rows>
</Body>
<Corner />
<RowGroups>
<TableGroup Name="detailTableGroup5">
<Groupings>
<Grouping />
</Groupings>
</TableGroup>
</RowGroups>
<ColumnGroups>
<TableGroup Name="tableGroup11">
<ReportItem>
<TextBox Width="7.53125362961311in" Height="0.340625009871936in" Left="0.00608476018533111in" Top="5.00000047683716in" Value="History" Name="textBox54" StyleName="SectionHeader" />
</ReportItem>
<ChildGroups>
<TableGroup Name="group10">
<ReportItem>
<TextBox Width="0.104166708019905in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Name="textBox42" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group13">
<ReportItem>
<TextBox Width="0.723959682436074in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Value="Date" Name="textBox44" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group14">
<ReportItem>
<TextBox Width="1.13541786949154in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Value="User" Name="textBox46" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group15">
<ReportItem>
<TextBox Width="1.34375043046353in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Value="Action" Name="textBox48" StyleName="td-Label1" />
</ReportItem>
<ChildGroups>
<TableGroup Name="group12" />
<TableGroup Name="group11" />
</ChildGroups>
</TableGroup>
<TableGroup Name="group16">
<ReportItem>
<TextBox Width="1.44270756038326in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Value="Step" Name="textBox50" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
<TableGroup Name="group17">
<ReportItem>
<TextBox Width="2.78125024172617in" Height="0.239583333333333in" Left="0in" Top="0in" KeepTogether="False" Value="Comments" Name="textBox52" StyleName="td-Label1" />
</ReportItem>
</TableGroup>
</ChildGroups>
</TableGroup>
</ColumnGroups>
<Bindings>
<Binding Path="DataSource" Expression="=ReportItem.DataObject.RawData.GetValue("binderDispositionHistoryItems")" />
</Bindings>
</Table>
</Items>
</ReportHeaderSection>
</Items>
<StyleSheet>
<StyleRule>
<Style>
<Font Name="Segoe UI" />
<Padding Left="2pt" Right="2pt" />
</Style>
<Selectors>
<TypeSelector Type="TextItemBase" />
<TypeSelector Type="HtmlTextBox" />
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="241, 241, 241">
<BorderStyle Default="Solid" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Padding Left="0.100000001490116in" Right="0.100000001490116in" Top="0.0500000007450581in" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Label" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Default="Solid" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Padding Left="0.100000001490116in" Right="0.100000001490116in" Top="0.0500000007450581in" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Value" />
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="241, 241, 241" TextAlign="Right">
<BorderWidth Default="0.5pt" />
<Font Size="6pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Label-Note" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Default="Solid" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Font Size="8pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Value-Note" />
</Selectors>
</StyleRule>
<StyleRule>
<Style VerticalAlign="Bottom">
<BorderStyle Bottom="Solid" />
<BorderWidth Default="0.5pt" Bottom="0.100000001490116pt" />
<Font Name="Segoe UI Light" Size="10pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="th-list" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<Font Size="8pt" />
<Padding Top="3pt" Bottom="3pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-list" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<Font Name="Segoe UI Light" Size="16pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="SectionHeader" />
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="241, 241, 241">
<BorderStyle Default="Solid" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Font Size="6pt" Bold="True" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-ContactType" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Default="Solid" Bottom="None" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Font Size="10pt" Bold="True" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Contact-Line1" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Default="Solid" Top="None" />
<BorderColor Default="206, 206, 210" />
<BorderWidth Default="0.5pt" />
<Font Size="8pt" Italic="True" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Contact-Line2" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<Padding Top="0.100000001490116in" Bottom="0.100000001490116in" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="panel-Section" />
</Selectors>
</StyleRule>
<StyleRule>
<Style Color="Black">
<BorderStyle Default="Solid" />
<BorderColor Default="Black" />
<BorderWidth Default="1px" />
<Font Name="Tahoma" Size="9pt" />
</Style>
<Selectors>
<StyleSelector Type="Table" StyleName="Corporate.TableNormal" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Default="Solid" />
<BorderColor Default="Black" />
<BorderWidth Default="1px" />
<Font Name="Tahoma" Size="9pt" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<TypeSelector Type="Table" />
<StyleSelector Type="ReportItem" StyleName="Corporate.TableBody" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="28, 58, 112" Color="White" VerticalAlign="Middle">
<BorderStyle Default="Solid" />
<BorderColor Default="Black" />
<BorderWidth Default="1px" />
<Font Name="Tahoma" Size="10pt" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<TypeSelector Type="Table" />
<StyleSelector Type="ReportItem" StyleName="Corporate.TableHeader" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="22, 36, 84" Color="White" />
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="blue" />
<StyleSelector Type="ReportItemBase" StyleName="SectionHeader" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="238, 238, 238" LineWidth="1px">
<BorderStyle Default="Solid" />
<BorderColor Default="Silver" />
<BorderWidth Default="1px" />
<Font Name="Segoe UI" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-cell" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="238, 238, 238">
<BorderStyle Default="Double" />
<BorderColor Default="Silver" />
<Font Name="Segoe UI" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-cellLabel" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<BorderStyle Bottom="Solid" />
<BorderColor Bottom="Silver" />
<Font Name="Segoe UI" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Label1" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<Font Name="Segoe UI" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Value1" />
</Selectors>
</StyleRule>
<StyleRule>
<Style>
<Font Name="Segoe UI" Size="8pt" />
</Style>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="td-Value2" />
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="0, 50, 0" Color="White">
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="green" />
<StyleSelector Type="ReportItemBase" StyleName="SectionHeader" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="175, 120, 23" Color="White">
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="manilla" />
<StyleSelector Type="ReportItemBase" StyleName="SectionHeader" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
<StyleRule>
<Style BackgroundColor="80, 0, 0" Color="White">
<Font Name="Segoe UI Light" Size="14pt" />
</Style>
<Selectors>
<DescendantSelector>
<Selectors>
<StyleSelector Type="ReportItemBase" StyleName="red" />
<StyleSelector Type="ReportItemBase" StyleName="SectionHeader" />
</Selectors>
</DescendantSelector>
</Selectors>
</StyleRule>
</StyleSheet>
<PageSettings>
<PageSettings PaperKind="Letter" Landscape="False">
<Margins>
<MarginsU Left="0.5in" Right="0.5in" Top="0.5in" Bottom="0.5in" />
</Margins>
</PageSettings>
</PageSettings>
</Report>
Since the exception originates from the GetUserName() method which is not part of the Telerik Reporting codebase, you can try to debug this method on your end and pinpoint the culprit.
Also, test removing the user function GetUserName() from the expressions in the report. The report should be rendered successfully this time.
Regards,
Nasko
Telerik by Progress

In such case the issue might be connected to this fix from Telerik Reporting R2 2016:
"Each table cell now respects the KeepTogether property of the contained item and splits the row/column when appropriate. This leads to better handling of nested tables."
We will appreciate if you open a new support ticket where you can zip and attach a simplified and runnable sample project with test/dummy data which exhibits the issue. Our dev team will review the project and advise further.
Regards,
Nasko
Telerik by Progress

I'm also having a similar problem since upgrading to the latest version of Reports. Before the upgrade reports worked fine, after the upgrade reports with nested tables started throwing this exception.
I'm going to have to roll back to an older version for now unless anyone has an idea how to fix this issue
Stack Trace:
[IndexOutOfRangeException: Index was outside the bounds of the array.]
Telerik.Reporting.Paging.Table.CellAt(Int32 rowIndex, Int32 columnIndex) +108
Telerik.Reporting.Paging.Table.RenderCells(TableRegion region, RectangleRF clip, Double left, Double top, Double reservedLeft, Double reservedTop) +72
Telerik.Reporting.Paging.Table.AddChildrenToPage(RectangleRF clip) +595
Telerik.Reporting.Paging.PagingElementBase.AddToPageRecursive(RectangleRF parentClip, Double parentTop, Double parentLeft, Double parentReservedTop, Double parentReservedBottom, Double parentReservedLeft, Double parentReservedRight) +816
Telerik.Reporting.Paging.Table.RenderCells(TableRegion region, RectangleRF clip, Double left, Double top, Double reservedLeft, Double reservedTop) +261
Telerik.Reporting.Paging.Table.AddChildrenToPage(RectangleRF clip) +595
Telerik.Reporting.Paging.PagingElementBase.AddToPageRecursive(RectangleRF parentClip, Double parentTop, Double parentLeft, Double parentReservedTop, Double parentReservedBottom, Double parentReservedLeft, Double parentReservedRight) +816
Telerik.Reporting.Paging.PagingElementBase.AddChildrenToPage(RectangleRF clip) +193
Telerik.Reporting.Paging.PagingElementBase.AddToPageRecursive(RectangleRF parentClip, Double parentTop, Double parentLeft, Double parentReservedTop, Double parentReservedBottom, Double parentReservedLeft, Double parentReservedRight) +816
Telerik.Reporting.Paging.PagingElementBase.AddChildrenToPage(RectangleRF clip) +193
Telerik.Reporting.Paging.Group.AddChildrenToPage(RectangleRF clip) +171
Telerik.Reporting.Paging.PagingElementBase.AddToPageRecursive(RectangleRF parentClip, Double parentTop, Double parentLeft, Double parentReservedTop, Double parentReservedBottom, Double parentReservedLeft, Double parentReservedRight) +816
Telerik.Reporting.Paging.PagingElementBase.AddChildrenToPage(RectangleRF clip) +193
Telerik.Reporting.Paging.PagingElementBase.AddToPageRecursive(RectangleRF parentClip, Double parentTop, Double parentLeft, Double parentReservedTop, Double parentReservedBottom, Double parentReservedLeft, Double parentReservedRight) +816
Telerik.Reporting.Paging.PageCompositionBase.CollectElementsAndDataForPage() +170
Telerik.Reporting.Paging.PageCompositionBase.OutputPage() +534
Telerik.Reporting.Paging.PageCompositionBase.CreatePages() +828
Telerik.Reporting.Paging.PagerBase.Telerik.Reporting.Paging.IPager.CreatePages(IPageHandler handler, Report report) +42
Telerik.Reporting.BaseRendering.RenderingExtensionBase.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback) +314
Telerik.Reporting.Processing.ReportProcessor.CountPages(IList`1 reports, IRenderingContext renderingContext, Hashtable deviceInfo, ExtensionInfo extensionInfo, CreateStream createStreamCallback) +402
Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) +472
Telerik.Reporting.Processing.ReportProcessor.RenderCore(String format, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) +49
Telerik.ReportViewer.WebForms.ReportPageOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext) +85
Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride() +206
Telerik.ReportViewer.WebForms.ReportPageOperation.PerformOperationOverride() +88
Telerik.ReportViewer.WebForms.HandlerOperation.PerformOperation(HttpContext context, ICacheManager cacheManager) +49
Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context) +194
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +188
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +69

Just to follow up, it is a similar scenario to the person who posted before me. A nested table inside a cell of another table, the issue seems to occur when the nested table does not contain any data.
Having re-read the previous post I see the suggestion to put something in the NoDataMessage property of the nested table, this also solved the problem for me.
We tested the described scenario locally by nesting a table inside another table. The nested table had no data and was configured to display a no data message correctly. Then we removed the no data message and the report still worked correctly. You can check the sample used in the attached zip file.
As mentioned previously, in order to investigate further we will need to review a simplified and runnable sample project/report with test/dummy data which exhibits the issue.
Regards,
Nasko
Telerik by Progress


Good morning:
I did modify the data csvDatasource2 on table 2 of your report, and it produces the error that I was getting before. If a row in table 2 does not contain data, and the following row contains data then it produces the error(see png file). Unfortunately, I am only allowed to attache gif, jpg, jpeg, and png files; I can't attach the zip file to show you the problem. Just change the CSV to the following context, and leave one row empty and shown below.
col1,col2
t1,t2

The issue has been logged in our system for improvement and it will be addressed in a future release of the product.
The attachment limitation applies only to forum threads. This is the reason we previously asked you to open a support ticket, where you are allowed to attach a zip file with a demo.
Regards,
Nasko
Telerik by Progress