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.
Author |
Topic |
daddynahoj
Starting Member
7 Posts |
Posted - 2004-12-20 : 03:25:23
|
Hi all. I'm trying to render a report that I created, but I have no idea what's wrong with it. Is there any RDL syntax check application I can use to locate the error?This is the error message I'm getting:aspnet_wp!library!e34!12/20/2004-09:20:56:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/MashieReports/5ca0292e-7522-4e9a-8de5-a9d587a73902' cannot be found., ; Info: Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/MashieReports/5ca0292e-7522-4e9a-8de5-a9d587a73902' cannot be found.(Since the deploy fails, the item cannot be found of course. But why did it fail?)Here's my RDL-file:<?xml version="1.0" encoding="utf-8"?><Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition"> <Width>12cm</Width> <DataSources> <DataSource Name="Mashie"> <ConnectionProperties> <DataProvider>SQL</DataProvider> <ConnectString /> <IntegratedSecurity>true</IntegratedSecurity> </ConnectionProperties> </DataSource> </DataSources> <Body> <Height>5in</Height> <ReportItems> <Table Name="table5664cd6b"> <Top>.5in</Top> <Left>.5in</Left> <Height>.5in</Height> <Width>15cm</Width> <TableColumns> <TableColumn> <Width>10cm</Width> </TableColumn> <TableColumn> <Width>10cm</Width> </TableColumn> <TableColumn> <Width>10cm</Width> </TableColumn> <TableColumn> <Width>10cm</Width> </TableColumn> </TableColumns> <Details> <TableRows> <TableRow> <Height>.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="tbaee03927"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Portion(er), Skola</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb3192a0e5"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Lunch</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb7d22cd37"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Kanel malen</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb954eb4f1"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>1</Value> </Textbox> </ReportItems> </TableCell> </TableCells> </TableRow> <TableRow> <Height>.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="tbd0de4bbd"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Portion(er), Skola</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb0c32db5f"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Vegetarisk</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb561b8605"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>Salladskål kinakål</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="tb34eeac44"> <Style /> <Top>0in</Top> <Left>0in</Left> <Height>.5in</Height> <Width>1.5in</Width> <Value>1</Value> </Textbox> </ReportItems> </TableCell> </TableCells> </TableRow> </TableRows> </Details> </Table> </ReportItems> </Body></Report>I suspect the table is wrong somehow, because if I skip the table and its rows, cells etc, the report renders successfully. |
|
daddynahoj
Starting Member
7 Posts |
Posted - 2004-12-20 : 11:32:35
|
Never mind. I found it. |
 |
|
|
|
|