Actuate Information Delivery API data types : Grouping
 
Grouping
A complex data type that describes how to group data in a query.
Schema
<xsd:complexType name="Grouping">
<xsd:sequence>
<xsd:element name="GroupKey" type="xsd:string"/>
<xsd:element name="GroupSortOrder">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="ASC"/>
<xsd:enumeration value="DES"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="GroupHeadingFields"
type="typens:ArrayOfString" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
Elements
GroupKey
The key for grouping data.
GroupSortOrder
The grouping order. ASC specifies ascending order and DES specifies descending order. The values are case-sensitive. Specify in uppercase.
Differentiate sort order from fetch direction. Sort order specifies the order of the data returned by a query. Fetch direction specifies whether to get the next or previous set of results in a response when the result set exceeds the FetchSize.
GroupHeadingFields
The columns to include in the group.