Interface PresentationVariant

Refer to OData 4.0 Vocabularies - SAP UI see PresentationVariantType

interface PresentationVariant {
    groupBy?: Dimension[];
    id?: string;
    includeGrandTotal?: any;
    initialExpansionLevel?: number;
    maxItems?: number;
    requestAtLeast?: any;
    skip?: number;
    sortOrder?: OrderBy[];
    text?: string;
    total?: any;
    totalBy?: any;
}

Properties

groupBy?: Dimension[]

Sequence of groupable properties p1, p2, ... defining how the result is composed of instances representing groups, one for each combination of value properties in the queried collection. The sequence specifies a certain level of aggregation for the queried collection, and every group instance will provide aggregated values for properties that are aggregatable. Moreover, the series of sub-sequences (p1), (p1, p2), ... forms a leveled hierarchy, which may become relevant in combination with InitialExpansionLevel.

id?: string
includeGrandTotal?: any

Todo

initialExpansionLevel?: number

Level up to which the hierarchy defined for the queried collection should be expanded initially. The hierarchy may be implicitly imposed by the sequence of the GroupBy, or by an explicit hierarchy annotation.

maxItems?: number
requestAtLeast?: any
skip?: number
sortOrder?: OrderBy[]
text?: string
total?: any

Todo

totalBy?: any

Todo

Generated using TypeDoc