GetParameterPickList
Retrieves the parameters names from a pick list in a report.
Request schema
<xsd:complexType name="GetParameterPickList">
<xsd:sequence>
<xsd:element name="Object" type="typens:ObjectIdentifier"
minOccurs="0"/>
<xsd:element name="CascadingGroupName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ParameterName" type="xsd:string"/>
<xsd:element name="PrecedingParameterValues"
type="typens:ArrayOfParameterValue" minOccurs="0"/>
<xsd:element name="Filter" type="xsd:string" minOccurs="0"/>
<xsd:element name="StartIndex" type="xsd:long"
minOccurs="0"/>
<xsd:element name="FetchSize" type="xsd:long" minOccurs="0"/>
<xsd:element name="CountLimit" type="xsd:long"
minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
Request elements
Object
The identifier of the object from which to retrieve the parameter pick list.
CascadingGroupName
The cascading group name in the pick list containing the target list.
ParameterName
The name of the parameter. Each parameter name is unique within a report even between execution and view parameters.
PrecedingParameterValues
The values of the parameters that precede the specified parameter.
Filter
A string prefix to be applied to the overall selection list.
StartIndex
The index where the fetch operation starts.
FetchSize
The maximum number of records to retrieve and return in a result set. The default value is 500.
CountLimit
The Number of entries to be counted after FetchSize is reached. By default, CountLimit is equal to FetchSize. To count all records, set CountLimit to ‑1.
Response schema
<xsd:complexType name="GetParameterPickListResponse">
<xsd:sequence>
<xsd:element name="ParameterPickList"
type="typens:ArrayOfNameValuePair"/>
<xsd:element name="TotalCount" type="xsd:long"
minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
Response elements
ParameterPickList
List of parameters.
TotalCount
The number of parameters in the list.