Groups | Blog | Home
all groups > sql server reporting services > october 2004 >

sql server reporting services : The required field Name is missing from the input structure.


Kent Tegels (MVP)
10/25/2004 3:54:25 PM
Okay, this is one of the oddest problems I've had to date with Reporting Services 2000.
I have an ASMX that calls the Reporting Services ASMX via the Render method. The report path, format, deviceInfo and parms are populated as expected. The result the values are Nothing/Null null.
The method call throws an SOAP exception, and drilling into that, I get to this.
<detail>
<ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsMissingElement</ErrorCode>
<HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus>
<Message xmlns="http://www.microsoft.com/sql/reportingservices">The required field Name is missing from the input structure.</Message>
<HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&amp;EvtID=rsMissingElement&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=8.00</HelpLink>
<ProductName xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName>
<ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">8.00.878.00</ProductVersion>
<ProductLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId>
<OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem>
<CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId>
<MoreInformation xmlns="http://www.microsoft.com/sql/reportingservices">
<Source>Microsoft.ReportingServices.Processing</Source>
<Message msrs:ErrorCode="rsMissingElement" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&amp;EvtID=rsMissingElement&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=8.00" xmlns:msrs="http://www.microsoft.com/sql/reportingservices">The required field Name is missing from the input structure.</Message>
</MoreInformation>
<Warnings xmlns="http://www.microsoft.com/sql/reportingservices" />
</detail>
Problem: This report has no parameter called Name that I can find.
And yes, other reports work. It just seems to be this one that's a strugglin'.
HELP!
Thanks,
Kent Tegels
MVP - SQL Server

The SSX FAQ & Blog:
http://tinyurl.com/6r4gb
Looking for XM, the GUI for SSX? See both:
http://tinyurl.com/4dfee and http://tinyurl.com/53hts
My Blog:
Robert Bruckner [MSFT]
10/25/2004 11:12:59 PM
Most likely one of the mandatory parameters is missing or a parameter name
in the parameter collection == null, which is not allowed. Only parameter
values can be null, but parameter names in the collection always have to be
!= null.

--
This posting is provided "AS IS" with no warranties, and confers no rights.

[quoted text, click to view]
method. The report path, format, deviceInfo and parms are populated as
expected. The result the values are Nothing/Null null.
[quoted text, click to view]
xmlns="http://www.microsoft.com/sql/reportingservices">rsMissingElement</Err
orCode>
[quoted text, click to view]
xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.c
om/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.U
tilities.ErrorStrings.resources.Strings&amp;EvtID=rsMissingElement&amp;ProdN
ame=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=8.00</HelpLi
nk>
[quoted text, click to view]
xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server
Reporting Services</ProductName>
[quoted text, click to view]
xmlns="http://www.microsoft.com/sql/reportingservices">8.00.878.00</ProductV
ersion>
[quoted text, click to view]
xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</Operat
ingSystem>
[quoted text, click to view]
msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Micro
soft.ReportingServices.Diagnostics.Utilities.ErrorStrings.resources.Strings&
amp;EvtID=rsMissingElement&amp;ProdName=Microsoft%20SQL%20Server%20Reporting
%20Services&amp;ProdVer=8.00"
xmlns:msrs="http://www.microsoft.com/sql/reportingservices">The required
field Name is missing from the input structure.</Message>
[quoted text, click to view]

Kent Tegels (MVP)
10/26/2004 9:13:40 AM
Writes Robert Bruckner...
[quoted text, click to view]
That's exactly what it was. Doh!
/me hangs head in shame.

Thanks,
Kent Tegels
MVP - SQL Server

The SSX FAQ & Blog:
http://tinyurl.com/6r4gb
Looking for XM, the GUI for SSX? See both:
http://tinyurl.com/4dfee and http://tinyurl.com/53hts
My Blog:
AddThis Social Bookmark Button