Skip to Content
0
Former Member
Mar 18, 2009 at 04:38 PM

BIPlatform web service - issue

24 Views

I am unable to schedule the report using BIPlatform web service. I can connect to the server and the request is being submitted successfully. I can check the history of the reports and it says 'No Parameters' using the infoview. I can see the soap request call contains the input values for the report in the CurrentValues section. I don't see this in the soapenvelop response from the web service. Please guide me.

I am enclosing below part of soap request and response which is being generated by web services sdk when I schedule the report as follows:

Request:

<ns1:ReportParameters>

<ns1:Parameters>

<ns1:CurrentValues>

<ns1:CurrentValue>

<ns1:ShowDescriptionOnlyEnabled>false</ns1:ShowDescriptionOnlyEnabled>

<ns1:Data>1111111</ns1:Data>

</ns1:CurrentValue>

<ns1:CurrentValue xsi:nil="true"/>

</ns1:CurrentValues>

<ns1:SortMethod>1</ns1:SortMethod>

<ns1:PromptOnDemandViewing>false</ns1:PromptOnDemandViewing>

<ns1:ParameterName>xx_number</ns1:ParameterName>

<ns1:ValueType>STRING</ns1:ValueType>

<ns1:ReportParameterOptions>

<ns1:ReportParameterOption>HAS_DISCRETE_VALUES</ns1:ReportParameterOption>

</ns1:ReportParameterOptions>

<ns1:GroupNumber>0</ns1:GroupNumber>

</ns1:Parameters>

</ns1:ReportParameters>

Response:

<cr:ReportParameters>

<cr:Parameters>

<cr:CurrentValues/>

<cr:SortMethod>1</cr:SortMethod>

<cr:PromptOnDemandViewing>false</cr:PromptOnDemandViewing>

<cr:EditMask/>

<cr:ParameterName>xx_number</cr:ParameterName>

<cr:DefaultValues/>

<cr:ReportParameterOptions>

<cr:ReportParameterOption>HAS_DISCRETE_VALUES</cr:ReportParameterOption>

</cr:ReportParameterOptions>

<cr:Prompt>Enter number:</cr:Prompt>

<cr:ReportName/><cr:GroupNumber>0</cr:GroupNumber>

</cr:Parameters>

</cr:ReportParameters>