Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 ReportRenderingException

Author  Topic 

bobzor
Starting Member

10 Posts

Posted - 2010-10-29 : 15:27:31
The report looks great in Visual Studio, (renders correctly, no errors no warnings) but when I look at in the Report Manager web page I get the following error:
ReportRenderingException: An error occurred during rendering of the report
Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

But I can still export it to a PDF it looks fine there. Iv'e googled the problem and don't see much. One person got good results by removing the "RepeatWith" property on several text boxes, but that doesn't show up in my XML. One person got lucky be removing and re-adding headers/footers, but I wasn't that lucky. There was a suggesion to apply the latest service pack for 2008, but I'm on 2005.

Any suggestions before I start removing chunks of the report to see if I can find the pain point?

bobzor
Starting Member

10 Posts

Posted - 2010-10-29 : 15:37:09
Here is the RDL:

<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<DataSources>
<DataSource Name="DEV">
<rd:DataSourceID>b2685bad-5e0d-4ce2-b722-92cc31c4b34e</rd:DataSourceID>
<DataSourceReference>DEV</DataSourceReference>
</DataSource>
</DataSources>
<InteractiveHeight>8.5in</InteractiveHeight>
<Description>Xxxxxxxx Loss Report</Description>
<ReportParameters>
<ReportParameter Name="CustomerCode">
<DataType>String</DataType>
<Prompt>Customer Code</Prompt>
</ReportParameter>
<ReportParameter Name="PeriodYear">
<DataType>Integer</DataType>
<Nullable>true</Nullable>
<AllowBlank>true</AllowBlank>
<Prompt>Report Period Year</Prompt>
</ReportParameter>
<ReportParameter Name="PeriodMonth">
<DataType>Integer</DataType>
<Nullable>true</Nullable>
<AllowBlank>true</AllowBlank>
<Prompt>Report Period Month</Prompt>
</ReportParameter>
</ReportParameters>
<rd:DrawGrid>true</rd:DrawGrid>
<InteractiveWidth>11in</InteractiveWidth>
<rd:SnapToGrid>false</rd:SnapToGrid>
<RightMargin>0.5in</RightMargin>
<LeftMargin>0.5in</LeftMargin>
<PageHeader>
<PrintOnFirstPage>true</PrintOnFirstPage>
<ReportItems>
<Image Name="image1">
<Sizing>Fit</Sizing>
<Width>1.42745in</Width>
<MIMEType />
<Source>External</Source>
<Style />
<ZIndex>4</ZIndex>
<Value>sblogosmall.bmp</Value>
</Image>
<Textbox Name="textbox46">
<rd:DefaultName>textbox46</rd:DefaultName>
<Style>
<FontSize>8pt</FontSize>
<TextAlign>Right</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Left>8.04167in</Left>
<Height>0.25in</Height>
<Value>="Page " & Globals.PageNumber & " of " & Globals.TotalPages</Value>
</Textbox>
<Textbox Name="CompanyName">
<Width>2.5in</Width>
<Style>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Left>3.75in</Left>
<Height>0.225in</Height>
<Value>XxxXxxxx Xxxxxxx Company</Value>
</Textbox>
<Textbox Name="ReportTitle">
<Top>0.225in</Top>
<Width>2.5in</Width>
<Style>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Left>3.75in</Left>
<Height>0.19792in</Height>
<Value>XxxXxxxx Loss Report</Value>
</Textbox>
<Textbox Name="AsOfDateHeaderBox">
<Top>0.425in</Top>
<Width>5.25in</Width>
<Style>
<FontSize>8pt</FontSize>
<TextAlign>Center</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Left>2.20833in</Left>
<Height>0.25in</Height>
<Value>=code.GetDate(IIF(IsNothing(Parameters!PeriodYear.Value),0, Parameters!PeriodYear.Value), IIF(IsNothing(Parameters!PeriodMonth.Value),0, Parameters!PeriodMonth.Value) )</Value>
</Textbox>
</ReportItems>
<Height>0.8in</Height>
<PrintOnLastPage>true</PrintOnLastPage>
</PageHeader>
<BottomMargin>0.5in</BottomMargin>
<rd:ReportID>b07957c1-46dc-4e7b-9dbf-e63b219bbe05</rd:ReportID>
<PageWidth>11in</PageWidth>
<DataSets>
<DataSet Name="Repeater">
<Fields>
<Field Name="Policy_No">
<DataField>Policy_No</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Claim_No">
<DataField>Claim_No</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Date_Of_Loss">
<DataField>Date_Of_Loss</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
<Field Name="Total_Paid">
<DataField>Total_Paid</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="Value_date">
<DataField>Value_date</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
<Field Name="Customer_Code">
<DataField>Customer_Code</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Claimant_Name">
<DataField>Claimant_Name</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="ClaimStatus">
<DataField>ClaimStatus</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Body_Part_Desc">
<DataField>Body_Part_Desc</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Injury_Type_Desc">
<DataField>Injury_Type_Desc</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_name">
<DataField>cap_name</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_addr_line1">
<DataField>cap_addr_line1</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_addr_line2">
<DataField>cap_addr_line2</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_addr_city">
<DataField>cap_addr_city</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_addr_state">
<DataField>cap_addr_state</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_addr_zip">
<DataField>cap_addr_zip</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="ProducerCode">
<DataField>ProducerCode</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="BrokerName">
<DataField>BrokerName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="MailingAddress">
<DataField>MailingAddress</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="BrokerCity">
<DataField>BrokerCity</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="BrokerState">
<DataField>BrokerState</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="BrokerZip">
<DataField>BrokerZip</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Include">
<DataField>Include</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="cap_company_code">
<DataField>cap_company_code</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
</Fields>
<Query>
<DataSourceName>DEV</DataSourceName>
<CommandType>StoredProcedure</CommandType>
<CommandText>usp_getLossReportRepeater</CommandText>
<QueryParameters>
<QueryParameter Name="@CustomerCode">
<Value>=Parameters!CustomerCode.Value</Value>
</QueryParameter>
<QueryParameter Name="@PeriodMonth">
<Value>=Parameters!PeriodMonth.Value</Value>
</QueryParameter>
<QueryParameter Name="@PeriodYear">
<Value>=Parameters!PeriodYear.Value</Value>
</QueryParameter>
</QueryParameters>
</Query>
</DataSet>
</DataSets>
<Author>bzormei 10/20/2010</Author>
<Code>
Public Shared Function GetDate(ByVal year As Integer, ByVal month As Integer) As String
Dim intCurrentYear As Integer
Dim intCurrentMonth As Integer
Dim strAsOf as String

intCurrentMonth = DatePart("m", Now)
intCurrentYear = DatePart("yyyy", Now)
strAsOf = "As of: "

If year <> Nothing Then
If year <> 0 Then
intCurrentYear = year
End If
End If
If month <> Nothing Then
If month <> 0 Then
intCurrentMonth = month
strAsOf = "As of Month End: "
End If
End If

Return strAsOf & Right("00" & intCurrentMonth, 2) & "/" & intCurrentYear
End Function


</Code>
<Width>9.97917in</Width>
<Body>
<ReportItems>
<Table Name="table1">
<NoRows> No data is available for the selected parameters.</NoRows>
<DataSetName>Repeater</DataSetName>
<TableGroups>
<TableGroup>
<Grouping Name="table1_Group1">
<GroupExpressions>
<GroupExpression>=Fields!Claimant_Name.Value</GroupExpression>
</GroupExpressions>
</Grouping>
<Footer>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox21">
<rd:DefaultName>textbox21</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>13</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox22">
<rd:DefaultName>textbox22</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>12</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox24">
<rd:DefaultName>textbox24</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>11</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox25">
<rd:DefaultName>textbox25</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>10</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox28">
<rd:DefaultName>textbox28</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>9</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox30">
<rd:DefaultName>textbox30</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>8</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox31">
<rd:DefaultName>textbox31</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>7</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.10417in</Height>
</TableRow>
</TableRows>
</Footer>
</TableGroup>
</TableGroups>
<Width>9.91241in</Width>
<Details>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="Claimant_Name">
<rd:DefaultName>Claimant_Name</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>6</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!Claimant_Name.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="Claim_No">
<rd:DefaultName>Claim_No</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!Claim_No.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="Date_Of_Loss">
<rd:DefaultName>Date_Of_Loss</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Format(Fields!Date_Of_Loss.Value, “MM/dd/yyyy”)</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="Total_Paid">
<rd:DefaultName>Total_Paid</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<TextAlign>Right</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Value>= "$" & Format(Fields!Total_Paid.value,"##,###,##0.00")</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="Injury_Type_Desc">
<rd:DefaultName>Injury_Type_Desc</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!Injury_Type_Desc.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="Body_Part_Desc">
<rd:DefaultName>Body_Part_Desc</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!Body_Part_Desc.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="ClaimStatus">
<rd:DefaultName>ClaimStatus</rd:DefaultName>
<Style>
<BorderStyle>
<Left>Solid</Left>
<Right>Solid</Right>
<Top>None</Top>
<Bottom>None</Bottom>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Value>=Fields!ClaimStatus.Value</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
</Details>
<Style>
<FontSize>8pt</FontSize>
</Style>
<Header>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ColSpan>7</ColSpan>
<ReportItems>
<Rectangle Name="rectangle1">
<ZIndex>28</ZIndex>
<ReportItems>
<Rectangle Name="rectangle7">
<ReportItems>
<Textbox Name="textbox6">
<Top>0.88in</Top>
<Style>
<BackgroundColor>LightGrey</BackgroundColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>1pt</PaddingLeft>
<PaddingRight>1pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>5</ZIndex>
<CanGrow>true</CanGrow>
<Value>Repeater Claimants</Value>
</Textbox>
<Textbox Name="textbox7">
<Style>
<BackgroundColor>LightGrey</BackgroundColor>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontWeight>700</FontWeight>
<TextAlign>Center</TextAlign>
<PaddingLeft>1pt</PaddingLeft>
<PaddingRight>1pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.2in</Height>
<Value>Account Details</Value>
</Textbox>
<Rectangle Name="rectangle8">
<ZIndex>3</ZIndex>
<ReportItems>
<Textbox Name="textbox8">
<Top>0.46667in</Top>
<Width>2.375in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>=Trim(Fields!cap_addr_city.Value) + ", " + Fields!cap_addr_state.Value + " " + Fields!cap_addr_zip.Value</Value>
</Textbox>
<Textbox Name="textbox9">
<Top>0.3125in</Top>
<Width>2.375in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>=Fields!cap_addr_line1.Value</Value>
</Textbox>
<Textbox Name="textbox12">
<Top>0.15625in</Top>
<Width>2.375in</Width>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>700</FontWeight>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>=Fields!cap_name.Value</Value>
</Textbox>
<Textbox Name="textbox15">
<Width>1.125in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>Report for:</Value>
</Textbox>
</ReportItems>
<Top>0.21in</Top>
<Width>2.5in</Width>
<Style>
<BorderStyle>
<Right>Solid</Right>
</BorderStyle>
</Style>
<Height>0.67in</Height>
</Rectangle>
<Rectangle Name="rectangle9">
<Left>2.5in</Left>
<ZIndex>2</ZIndex>
<ReportItems>
<Textbox Name="textbox230">
<rd:DefaultName>textbox230</rd:DefaultName>
<Top>0.17708in</Top>
<Width>0.01042in</Width>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Left>1.125in</Left>
<Height>0.01042in</Height>
<Value />
</Textbox>
<Textbox Name="textbox16">
<Width>1.125in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>Policy Period:</Value>
</Textbox>
</ReportItems>
<Top>0.21in</Top>
<Width>2.34375in</Width>
<Style>
<BorderStyle>
<Right>Solid</Right>
</BorderStyle>
</Style>
<Height>0.67in</Height>
</Rectangle>
<Rectangle Name="rectangle10">
<Left>4.875in</Left>
<ZIndex>1</ZIndex>
<ReportItems>
<Textbox Name="textbox18">
<Top>0.27in</Top>
<Width>1in</Width>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>700</FontWeight>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Left>1.175in</Left>
<Height>0.15in</Height>
<Value>=Parameters!CustomerCode.Value</Value>
</Textbox>
<Textbox Name="textbox33">
<Top>0.27in</Top>
<Width>1in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Left>0.2in</Left>
<Height>0.15in</Height>
<Value>Customer Code:</Value>
</Textbox>
<Textbox Name="textbox34">
<Top>0.135in</Top>
<Width>1in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Left>1.175in</Left>
<Height>0.15in</Height>
<Value>All Policies</Value>
</Textbox>
<Textbox Name="textbox36">
<Top>0.135in</Top>
<Width>1in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Left>0.2in</Left>
<Height>0.15in</Height>
<Value>Policy Number:</Value>
</Textbox>
</ReportItems>
<Top>0.21in</Top>
<Width>2.5in</Width>
<Style>
<BorderStyle>
<Right>Solid</Right>
</BorderStyle>
</Style>
<Height>0.67in</Height>
</Rectangle>
<Rectangle Name="rectangle11">
<Left>7.375in</Left>
<ReportItems>
<Textbox Name="textbox37">
<Top>0.46833in</Top>
<Width>2.44792in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>4</ZIndex>
<CanGrow>true</CanGrow>
<Left>0.0125in</Left>
<Height>0.15in</Height>
<Value>=Trim(Fields!BrokerCity.Value) + ", " + Fields!BrokerState.Value+ " " + Fields!BrokerZip.Value</Value>
</Textbox>
<Textbox Name="textbox39">
<Top>0.31208in</Top>
<Width>2.44792in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>3</ZIndex>
<CanGrow>true</CanGrow>
<Left>0.0125in</Left>
<Height>0.15in</Height>
<Value>=Fields!MailingAddress.Value</Value>
</Textbox>
<Textbox Name="textbox40">
<Top>0.15625in</Top>
<Width>2.44792in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>2</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>=Fields!BrokerName.Value</Value>
</Textbox>
<Textbox Name="textbox41">
<Width>0.65in</Width>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<ZIndex>1</ZIndex>
<CanGrow>true</CanGrow>
<Height>0.15in</Height>
<Value>Producer:</Value>
</Textbox>
<Textbox Name="textbox42">
<Style>
<FontSize>8pt</FontSize>
<TextAlign>Right</TextAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>1pt</PaddingTop>
<PaddingBottom>1pt</PaddingBottom>
</Style>
<CanGrow>true</CanGrow>
<Left>1.82292in</Left>
<Height>0.15in</Height>
<Value>=Fields!ProducerCode.Value</Value>
</Textbox>
</ReportItems>
<Top>0.21in</Top>
<Width>2.47292in</Width>
<Height>0.67in</Height>
</Rectangle>
</ReportItems>
<Width>9.90624in</Width>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
</Style>
<Height>1.08in</Height>
</Rectangle>
</ReportItems>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
</Style>
</Rectangle>
</ReportItems>
</TableCell>
</TableCells>
<Height>1.10417in</Height>
</TableRow>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox27">
<rd:DefaultName>textbox27</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>27</ZIndex>
<CanGrow>true</CanGrow>
<Value>Claimant Name</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox1">
<rd:DefaultName>textbox1</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>26</ZIndex>
<CanGrow>true</CanGrow>
<Value>Claim ID</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox2">
<rd:DefaultName>textbox2</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>25</ZIndex>
<CanGrow>true</CanGrow>
<Value>Date of Loss</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox3">
<rd:DefaultName>textbox3</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>24</ZIndex>
<CanGrow>true</CanGrow>
<Value>Total Incurred</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox13">
<rd:DefaultName>textbox13</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>23</ZIndex>
<CanGrow>true</CanGrow>
<Value>Injury Type</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox48">
<rd:DefaultName>textbox48</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>22</ZIndex>
<CanGrow>true</CanGrow>
<Value>Body Part Injured</Value>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox10">
<rd:DefaultName>textbox10</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
</BorderStyle>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>21</ZIndex>
<CanGrow>true</CanGrow>
<Value>Claim Status</Value>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.25in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Header>
<TableColumns>
<TableColumn>
<Width>1.83987in</Width>
</TableColumn>
<TableColumn>
<Width>1.11569in</Width>
</TableColumn>
<TableColumn>
<Width>0.88842in</Width>
</TableColumn>
<TableColumn>
<Width>0.99173in</Width>
</TableColumn>
<TableColumn>
<Width>1.36363in</Width>
</TableColumn>
<TableColumn>
<Width>2.14015in</Width>
</TableColumn>
<TableColumn>
<Width>1.57292in</Width>
</TableColumn>
</TableColumns>
<Height>1.73959in</Height>
<Footer>
<TableRows>
<TableRow>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="textbox4">
<rd:DefaultName>textbox4</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>20</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox5">
<rd:DefaultName>textbox5</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>19</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox11">
<rd:DefaultName>textbox11</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>18</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox14">
<rd:DefaultName>textbox14</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>17</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox17">
<rd:DefaultName>textbox17</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>16</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox19">
<rd:DefaultName>textbox19</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>15</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="textbox20">
<rd:DefaultName>textbox20</rd:DefaultName>
<Style>
<BorderStyle>
<Default>Solid</Default>
<Top>None</Top>
</BorderStyle>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>14</ZIndex>
<CanGrow>true</CanGrow>
<Value />
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Height>0.03125in</Height>
</TableRow>
</TableRows>
<RepeatOnNewPage>true</RepeatOnNewPage>
</Footer>
</Table>
</ReportItems>
<Height>1.75001in</Height>
</Body>
<Language>en-US</Language>
<TopMargin>0.5in</TopMargin>
<PageHeight>8.5in</PageHeight>
</Report>
Go to Top of Page
   

- Advertisement -