Qlik Sense Engine (qix)
GenericObject
Aborts the results of a search in a list object.
Parameters
- qPathstringRequired
Path to the definition of the list object. For example, /qListObjectDef .
Response
objectErrors
arrayAbortListObjectSearch(qPath)
const result = await genericObject.abortListObjectSearch("value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "AbortListObjectSearch", "params": { "qPath": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Accept the results of a search in a list object. The search results become selected in the field.
Parameters
- qPathstringRequired
Path to the definition of the list object. For example, /qListObjectDef .
- qToggleModebooleanRequired
Set to true to keep any selections present in the list object. If this parameter is set to false, selections made before accepting the list object search become alternative.
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
objectErrors
arrayAcceptListObjectSearch(qPath, qToggleMode, qSoftLock?)
const result = await genericObject.acceptListObjectSearch("value", true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "AcceptListObjectSearch", "params": { "qPath": "value", "qToggleMode": true, "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}You can use the AddGroupMembers method with any object that contains an object grouping definition. This method allows you to add one or more members to an existing group of objects directly.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For exampleb /qNxGroupDef .
- qMembersarray of objectsRequiredExperimental
Array of IDs for the objects and/or subgroups to add to the group.
qMembers properties
- qGroupIdstring
- qObjectIdstring
-
- qTargetGroupIdstring
Name of the group the Members will be added to (if not the called object).
- qPosIdstring
Id of the member whose position to insert into.
Response
objectErrors
arrayAddGroupMembers(qPath, qMembers, qTargetGroupId?, qPosId?)
const result = await genericObject.addGroupMembers("value", [ { "qGroupId": "value", "qObjectId": "value" }], "value", "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "AddGroupMembers", "params": { "qPath": "value", "qMembers": [ { "qGroupId": "value", "qObjectId": "value" } ], "qTargetGroupId": "value", "qPosId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Applies a patch to the properties of an object. Allows an update to some of the properties. It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch. In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties , and only a GetLayout call shows the result of the operation. Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared. It should not be possible to patch "/qInfo/qId", and it will be forbidden in the near future.
Parameters
- qPatchesarray of objectsRequired
Array of patches.
qPatches properties
- qOpstring
Can be one of: "add""remove""replace"
- qPathstring
Path to the property to add, remove or replace.
- qValuestring
This parameter is not used in a remove operation. Corresponds to the value of the property to add or to the new value of the property to update. Examples: "false", "2", ""New title""
-
- qSoftPatchboolean
If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch. The default value is false.
Response
objectErrors
arrayApplyPatches(qPatches, qSoftPatch?)
const result = await genericObject.applyPatches([ { "qOp": "add", "qPath": "value", "qValue": "value" }], true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ApplyPatches", "params": { "qPatches": [ { "qOp": "add", "qPath": "value", "qValue": "value" } ], "qSoftPatch": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Adds the generic object to the list of approved objects
Response
objectErrors
arrayApprove()
const result = await genericObject.approve()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "Approve"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:
- Ending the selection mode, see EndSelections Method.
- The sort criteria, see ListObjectDef or HyperCubeDef.
Example
A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.
Parameters
- qPathsarray of stringsRequired
List of the paths to the definition of the objects to enter selection mode. For example, /qListObjectDef .
Response
objectErrors
arrayBeginSelections(qPaths)
const result = await genericObject.beginSelections([ "value"])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "BeginSelections", "params": { "qPaths": [ "value" ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Clears the selections in a dimension of a visualization.
Parameters
- qPathstringRequired
Path to the definition of the visualization. For example, /qListObjectDef .
- qColIndicesarray of integers
Array of dimension numbers or indexes. The selections are cleared in the specified dimensions. Dimension numbers/indexes start from 0. If this parameter is not set, all dimensions are cleared.
Response
objectErrors
arrayClearSelections(qPath, qColIndices?)
const result = await genericObject.clearSelections("value", [ 123])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ClearSelections", "params": { "qPath": "value", "qColIndices": [ 123 ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Clears the soft properties of a generic object. For more information on how to add soft properties to a generic object, see ApplyPatches Method.
Response
objectErrors
arrayClearSoftPatches()
const result = await genericObject.clearSoftPatches()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ClearSoftPatches"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded. In the definition of the hypercube (in HyperCubeDef ), the parameter qAlwaysFullyExpanded must be set to false.
Parameters
- qPathstringRequired
Path to the definition of the object to be collapsed. For example, /qHyperCubeDef .
- qRowintegerRequired
Row index in the data matrix. Indexing starts from 0.
- qColintegerRequired
Column index. The index is based on the left dimension indexes. Indexing starts from 0.
- qAllbooleanRequired
If set to true, it collapses all cells. Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).
Response
objectErrors
arrayCollapseLeft(qPath, qRow, qCol, qAll)
const result = await genericObject.collapseLeft("value", 123, 123, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "CollapseLeft", "params": { "qPath": "value", "qRow": 123, "qCol": 123, "qAll": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded. In the definition of the hypercube (in HyperCubeDef ), the parameter qAlwaysFullyExpanded must be set to false.
Parameters
- qPathstringRequired
Path to the definition of the object to be collapsed For example, /qHyperCubeDef .
- qRowintegerRequired
Row index. The index is based on the top dimension indexes. Indexing starts from 0.
- qColintegerRequired
Column index in the data matrix. Indexing starts from 0.
- qAllbooleanRequired
If set to true, it collapses all cells. Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).
Response
objectErrors
arrayCollapseTop(qPath, qRow, qCol, qAll)
const result = await genericObject.collapseTop("value", 123, 123, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "CollapseTop", "params": { "qPath": "value", "qRow": 123, "qCol": 123, "qAll": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Copies the properties of a generic object and its children. The source object is specified by the parameter qFromId and the destination object is referenced by its handle.
Parameters
- qFromIdstringRequired
Identifier of the object to copy.
Response
objectErrors
arrayCopyFrom(qFromId)
const result = await genericObject.copyFrom("value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "CopyFrom", "params": { "qFromId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Creates a generic object that is a child of another generic object.
Parameters
- qPropobjectRequired
Information about the child. It is possible to create a child that is linked to another object.
qProp properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
- qPropForThisobject
Identifier of the parent's object. Should be set to update the properties of the parent's object at the same time the child is created.
qPropForThis properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Response
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qReturnobject
qReturn properties
- qTypestring
The native type of the object.
- qHandleinteger
The handle used to connect to object.
- qGenericTypestring
The type of the object.
- qGenericIdstring
Object ID.
-
Errors
arrayCreateChild(qProp, qPropForThis?)
const result = await genericObject.createChild({ "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true }}, { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "CreateChild", "params": { "qProp": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } }, "qPropForThis": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qInfo": { "qId": "value", "qType": "value" }, "qReturn": { "qType": "value", "qHandle": 123, "qGenericType": "value", "qGenericId": "value" } }}You can use the CreateGroup method with any object that contains an object grouping definition. This method allows you to create a new subgroup of objects directly and add it to a group's members. Returns the ID of the created subgroup.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example /qNxGroupDef .
- qGroupDefobjectRequiredExperimental
Definition of the new group.
qGroupDef properties
- qClassstring
Can be one of: "bookmark""object"
- qObjectTypestring
Specifies the type of the group's object members.
- qGroupTypestring
Specifies the type of the group's subgroup members.
- qLabelstring
The group's label. Will be evaluated as an expression if it starts with '='.
- qIncludeOrphanGroupsboolean
Include all groups of the relevant type, by adding those groups last that are not explicitly included in the hierarchy (orphans)
- qMemberIdsarray of objectsExperimental
The objects and sub-groups that are members of the group.
qMemberIds properties
- qGroupIdstring
- qObjectIdstring
-
-
- qTargetGroupIdstring
Id of the group to create the new subgroup in (if not the called object).
Response
- qGroupIdstring
Errors
arrayCreateGroup(qPath, qGroupDef, qTargetGroupId?)
const result = await genericObject.createGroup("value", { "qClass": "bookmark", "qObjectType": "bookmark", "qGroupType": "objectgroup", "qLabel": "value", "qIncludeOrphanGroups": true, "qMemberIds": [ { "qGroupId": "value", "qObjectId": "value" } ]}, "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "CreateGroup", "params": { "qPath": "value", "qGroupDef": { "qClass": "bookmark", "qObjectType": "bookmark", "qGroupType": "objectgroup", "qLabel": "value", "qIncludeOrphanGroups": true, "qMemberIds": [ { "qGroupId": "value", "qObjectId": "value" } ] }, "qTargetGroupId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qGroupId": "value" }}Removes all children and all children to the children on an object.
Parameters
- qPropForThisobject
Identifier of the parent's object and property to update. Should be set to update the properties of the parent's object at the same time the child is created.
qPropForThis properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Response
objectErrors
arrayDestroyAllChildren(qPropForThis?)
const result = await genericObject.destroyAllChildren({ "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "DestroyAllChildren", "params": { "qPropForThis": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Removes a child object.
Parameters
- qIdstringRequired
Identifier of the child to remove.
- qPropForThisobject
Identifier of the parent's object and property to update. Should be set to update the properties of the parent's object at the same time the child is created.
qPropForThis properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Response
- qSuccessboolean
Errors
arrayDestroyChild(qId, qPropForThis?)
const result = await genericObject.destroyChild("value", { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "DestroyChild", "params": { "qId": "value", "qPropForThis": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}You can use the drillUp method with any object that contains a drill-down group as a dimension. This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy. If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qDimNointegerRequired
Dimension number or index starting from 0. The default value is 0.
- qNbrStepsintegerRequired
Number of steps you want to drill up. The default value is 0.
Response
objectErrors
arrayDrillUp(qPath, qDimNo, qNbrSteps)
const result = await genericObject.drillUp("value", 123, 123)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "DrillUp", "params": { "qPath": "value", "qDimNo": 123, "qNbrSteps": 123 }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Adds a snapshot to a generic object.
Parameters
- qIdstringRequired
Identifier of the bookmark.
Response
objectErrors
arrayEmbedSnapshotObject(qId)
const result = await genericObject.embedSnapshotObject("value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "EmbedSnapshotObject", "params": { "qId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.
Parameters
- qAcceptbooleanRequired
Set this parameter to true to accept the selections before exiting the selection mode.
Response
objectErrors
arrayEndSelections(qAccept)
const result = await genericObject.endSelections(true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "EndSelections", "params": { "qAccept": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded. In the definition of the hypercube (in HyperCubeDef ), the parameter qAlwaysFullyExpanded must be set to false.
Parameters
- qPathstringRequired
Path to the definition of the object to be expanded. For example, /qHyperCubeDef .
- qRowintegerRequired
Row index in the data matrix to expand. Indexing starts from 0.
- qColintegerRequired
Column index. The index is based on the left dimension indexes. Indexing starts from 0.
- qAllbooleanRequired
If set to true, it expands all cells. Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).
Response
objectErrors
arrayExpandLeft(qPath, qRow, qCol, qAll)
const result = await genericObject.expandLeft("value", 123, 123, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ExpandLeft", "params": { "qPath": "value", "qRow": 123, "qCol": 123, "qAll": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded. In the definition of the hypercube (in HyperCubeDef ), the parameter qAlwaysFullyExpanded must be set to false.
Parameters
- qPathstringRequired
Path to the definition of the object to be expanded. For example, /qHyperCubeDef .
- qRowintegerRequired
Row index. The index is based on the top dimension indexes. Indexing starts from 0.
- qColintegerRequired
Column index in the data matrix. Indexing starts from 0.
- qAllbooleanRequired
If set to true, it expands all cells. Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).
Response
objectErrors
arrayExpandTop(qPath, qRow, qCol, qAll)
const result = await genericObject.expandTop("value", 123, 123, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ExpandTop", "params": { "qPath": "value", "qRow": 123, "qCol": 123, "qAll": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported. This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.
Default limitations in number of rows and columns
The default maximum number of rows and columns in the Excel export file is:
- 1048566 rows per sheet. For pivot tables: 1048566 column dimensions. 10 rows can be added after the export.
- 16384 columns per sheet. If the number of columns exceeds the limit, the exported file is truncated and a warning message is sent.
Default limitation in number of columns
The default maximum number of columns in the export file is:
- 1000 to export to a CSV file
Default limitations in number of cells
The default maximum number of cells in the export file is:
- 5000000 to export to a CSV file
The exported file is truncated if the number of cells exceeds the limit. A warning message with code 1000 is sent.
Default limitation in size
If the exported file is larger than the maximum value, then an out-of-memory error with code 13000 is returned.
Parameters
- qFileTypestringRequired
Type of the file to export.
One of:
- CSV_C or EXPORT_CSV_C
- CSV_T or EXPORT_CSV_T
- OOXML or EXPORT_OOXML
- PARQUET or EXPORT_PARQUET
- qPathstring
Path to the definition of the object to be exported. For example, /qHyperCubeDef . This parameter is mandatory if the file type is CSV_C or CSV_T .
- qFileNamestring
Name of the exported file after download from browser. This parameter is optional and only used in Qlik Sense Desktop.
- qExportStatestring
Defines the values to be exported. The default value is A.
One of:
- P or EXPORT_POSSIBLE
- A or EXPORT_ALL
- qServeOnceboolean
If the exported file should be served only once This parameter is optional and only used in Qlik Sense Enterprise (Windows) Default value: false
Response
- qUrlstring
- qWarningsarray of integers
Errors
arrayExportData(qFileType, qPath?, qFileName?, qExportState?, qServeOnce?)
const result = await genericObject.exportData("value", "value", "value", "value", true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ExportData", "params": { "qFileType": "value", "qPath": "value", "qFileName": "value", "qExportState": "value", "qServeOnce": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qUrl": "value", "qWarnings": [ 123 ] }}Returns the type of the object and the corresponding handle.
Parameters
- qIdstringRequired
Identifier of the object.
Response
- qReturnobject
qReturn properties
- qTypestring
The native type of the object.
- qHandleinteger
The handle used to connect to object.
- qGenericTypestring
The type of the object.
- qGenericIdstring
Object ID.
-
Errors
arrayGetChild(qId)
const result = await genericObject.getChild("value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetChild", "params": { "qId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qReturn": { "qType": "value", "qHandle": 123, "qGenericType": "value", "qGenericId": "value" } }}Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos , these properties are returned.
Full dynamic properties are optional and are returned if they exist in the definition of the object.
Response
- qInfosarray of objects
qInfos properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
Errors
arrayGetChildInfos()
const result = await genericObject.getChildInfos()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetChildInfos"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qInfos": [ { "qId": "value", "qType": "value" } ] }}Returns the identifier, the type and the properties of the object. If the object contains some soft properties, the soft properties are returned. If the object is linked to another object, the properties of the linking object are returned.
Response
- qPropobject
qProp properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Errors
arrayGetEffectiveProperties()
const result = await genericObject.getEffectiveProperties()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetEffectiveProperties"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qProp": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Gets the properties of:
- A generic object.
- The children of the generic object.
- The bookmarks/embedded snapshots of the generic object.
Response
- qPropEntryobject
qPropEntry properties
- qPropertyobject
qProperty properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
- qChildrenarray of undefineds
Information about the children of the generic object.
- qEmbeddedSnapshotRefobject
qEmbeddedSnapshotRef properties
- qPropertiesobject
qProperties properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qIncludeVariablesbooleanExperimental
If true all variables will be stored in the bookmark.
- qDistinctValuesbooleanExperimental
If true all selected values will be stored distinct, i.e. searchstrings will not be kept.
-
- qBookmarkobject
qBookmark properties
- qStateDataarray of objects
List of selections for each state.
qStateData properties
- qStateNamestring
Name of the alternate state. Default is current selections: $
- qFieldItemsarray of objects
List of the selections.
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
-
- qUtcModifyTimenumber
Time when the bookmark was created.
- qVariableItemsarray of objects
List of the variables in the app at the time the bookmark was created.
qVariableItems properties
- qNamestring
Name of the variable.
- qValueobject
qValue properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qDefinitionstring
The Reporting mode definition of the variable.
-
- qPatchesarray of objects
Softpatches to be applied with this bookmark.
qPatches properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qPatchesarray of objects
Array with patches.
qPatches properties
- qOpstring
Can be one of: "add""remove""replace"
- qPathstring
Path to the property to add, remove or replace.
- qValuestring
This parameter is not used in a remove operation. Corresponds to the value of the property to add or to the new value of the property to update. Examples: "false", "2", ""New title""
-
- qChildrenarray of undefineds
Array with child objects and their patches.
-
- qCyclicGroupStatesarray of objects
Information about cyclic groups by zero-based index. This field is unused.
qCyclicGroupStates properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qActiveFieldinteger
Active field of the cyclic group, identified by a zero-based index.
-
- qGroupStatesarray of objectsExperimental
Information about cyclic groups indexed by field definition.
qGroupStates properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qActiveFieldDefstring
String defining the active field.
-
-
- qClassicBookmarkobject
qClassicBookmark properties
- qIdstring
- qNamestring
- qUtcModifyTimenumber
- qUtcRecallTimenumber
- qRecallCountinteger
- qApplyAdditiveboolean
- qFieldItemsarray of objects
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
- qVariableItemsarray of objects
qVariableItems properties
- qNamestring
Name of the variable.
- qValueobject
qValue properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qDefinitionstring
The Reporting mode definition of the variable.
-
- qSheetIdstring
- qObjectsarray of objects
qObjects properties
- qIdstring
- qActiveboolean
- qShowModeinteger
- qScrollPosobject
qScrollPos properties
- qUsePositionboolean
- qPosobject
qPos properties
- qxinteger
x-coordinate in pixels. The origin is the top left of the screen.
- qyinteger
y-coordinate in pixels. The origin is the top left of the screen.
-
-
-
- qApplyLayoutStateboolean
- qShowPopupInfoboolean
- qInfoTextstring
- qOwnerstring
- qGroupsarray of objects
qGroups properties
- qIdstring
- qCyclePosinteger
-
- qShowobject
qShow properties
- qAlwaysboolean
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
-
- qApplyInputFieldValuesboolean
- qInputFieldItemsarray of objects
qInputFieldItems properties
- qFieldNamestring
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qPackedHashKeysarray of integers
-
- qObjectsLayoutarray of objects
qObjectsLayout properties
- qIdstring
- qActiveboolean
- qShowModeinteger
- qScrollPosobject
qScrollPos properties
- qUsePositionboolean
- qPosobject
qPos properties
- qxinteger
x-coordinate in pixels. The origin is the top left of the screen.
- qyinteger
y-coordinate in pixels. The origin is the top left of the screen.
-
-
- qExpansionInfoarray of objects
qExpansionInfo properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qLeftCollapsedboolean
- qTopCollapsedboolean
- qSortDataarray of objects
qSortData properties
- qNamestring
- qReversedboolean
-
- qDimensionGroupPosarray of objects
qDimensionGroupPos properties
- qGroupNamestring
- qCurrentItemNamestring
-
- qExpressionGroupPosarray of objects
qExpressionGroupPos properties
- qGroupNamestring
- qCurrentItemNamestring
-
- qUseGraphModeboolean
- qGraphModestring
Can be one of: "GRAPH_MODE_BAR""GRAPH_MODE_PIE""GRAPH_MODE_PIVOTTABLE""GRAPH_MODE_SCATTER""GRAPH_MODE_LINE""GRAPH_MODE_STRAIGHTTABLE""GRAPH_MODE_COMBO""GRAPH_MODE_RADAR""GRAPH_MODE_GAUGE""GRAPH_MODE_GRID""GRAPH_MODE_BLOCK""GRAPH_MODE_FUNNEL""GRAPH_MODE_MEKKO""GRAPH_MODE_LAST"
- qActiveContainerChildObjectIdstring
- qExtendedPivotStateobject
qExtendedPivotState properties
- qExpressionPositioninteger
- qNumberOfLeftDimensionsinteger
- qDimensionNamesarray of strings
- qEnableConditionsarray of strings
-
-
- qIncludeSelectionStateboolean
- qIncludeScrollPositionboolean
- qAlternateStateDataarray of objects
qAlternateStateData properties
- qStateNamestring
Name of the alternate state. Default is current selections: $
- qFieldItemsarray of objects
List of the selections.
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
-
- qForAnnotationsboolean
- qIncludeAllVariablesboolean
-
- qClassicMetadataobject
qClassicMetadata properties
- qSharedboolean
- qUtcModifyTimenumber
- qSheetIdstring
- qTemporaryboolean
- qRestrictedAccessboolean
- qAccessListarray of strings
- qPersonalEditionHash_OBSOLETEstring
- qHiddenboolean
- qLinkedToarray of strings
-
-
-
Errors
arrayGetFullPropertyTree()
const result = await genericObject.getFullPropertyTree()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetFullPropertyTree"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qPropEntry": { "qProperty": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } }, "qChildren": [], "qEmbeddedSnapshotRef": { "qProperties": { "qInfo": { "qId": "value", "qType": "value" }, "qMetaDef": {}, "qIncludeVariables": false, "qDistinctValues": false }, "qBookmark": { "qStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qUtcModifyTime": 123, "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qPatches": [ { "qInfo": { "qId": "value", "qType": "value" }, "qPatches": [ { "qOp": "add", "qPath": "value", "qValue": "value" } ], "qChildren": [] } ], "qCyclicGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveField": 123 } ], "qGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveFieldDef": "value" } ] }, "qClassicBookmark": { "qId": "value", "qName": "value", "qUtcModifyTime": 123, "qUtcRecallTime": 123, "qRecallCount": 123, "qApplyAdditive": true, "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ], "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qSheetId": "value", "qObjects": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } } } ], "qApplyLayoutState": false, "qShowPopupInfo": false, "qInfoText": "value", "qOwner": "value", "qGroups": [ { "qId": "value", "qCyclePos": 123 } ], "qShow": { "qAlways": true, "qExpression": { "qv": "value" } }, "qApplyInputFieldValues": true, "qInputFieldItems": [ { "qFieldName": "value", "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qPackedHashKeys": [ 123 ] } ], "qObjectsLayout": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } }, "qExpansionInfo": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qLeftCollapsed": true, "qTopCollapsed": true, "qSortData": [ { "qName": "value", "qReversed": true } ], "qDimensionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qExpressionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qUseGraphMode": true, "qGraphMode": "GRAPH_MODE_BAR", "qActiveContainerChildObjectId": "value", "qExtendedPivotState": { "qExpressionPosition": 123, "qNumberOfLeftDimensions": 123, "qDimensionNames": [ "value" ], "qEnableConditions": [ "value" ] } } ], "qIncludeSelectionState": true, "qIncludeScrollPosition": true, "qAlternateStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qForAnnotations": true, "qIncludeAllVariables": false }, "qClassicMetadata": { "qShared": true, "qUtcModifyTime": 123, "qSheetId": "value", "qTemporary": true, "qRestrictedAccess": true, "qAccessList": [ "value" ], "qPersonalEditionHash_OBSOLETE": "value", "qHidden": false, "qLinkedTo": [ "value" ] } } } }}GenericObject GetHyperCubeBinnedData
(qPath, qPages, qViewport, qDataRanges, qMaxNbrCells, qQueryLevel, qBinningMethod)This method supports data binning. When a generic object with two or three measures and one dimension contains a lot of data, groups of points (for example, cells) can be rendered instead of points. A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out). The grid of cells is adaptive (not static), meaning that it adapts to different length scales. The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object. The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned. Dimension values and measure values are rendered at point level (highest detailed level).
Adaptive Grid
More details about the properties of the adaptive grid are given in this paragraph. When the refinement is not the highest (cells are rendered), information about the adaptive grid is returned through several arrays. The first array contains the following properties:
| Name | Description | Type |
|---|---|---|
| qNum | Maximum number of points that a cell can contain. | String |
| qElemNumber | Is set to 0. | Boolean |
| qState | The default value is L. | One of:
|
The next arrays give the coordinates of each cell in the page. Each array contains the following properties:
| Name | Description | Type |
|---|---|---|
| qText | Coordinates of a cell in the measure range. “qText”: “[[<left>, <top>, <right>, <bottom>], [<left>, <top>, <right>, <bottom>], .... [<left>, <top>, <right>, <bottom>]] Where: < left >, < top >, < right > and < bottom > are the coordinates of the cell in the measure range. |
String |
| qNum | Number of points in the cell. | Double precision floating point |
| qElemNumber | Unique identifier for each cell, calculated by the engine during the construction of the grid. This element number is not stored in the database and can have a positive or a negative value. |
Integer |
| qState | The default value is L. | One of:
|
Dimension values and measures values
More details about the properties, when dimension and measure values are returned, are given in this paragraph. When the refinement is high, points are rendered (not cells) and dimension and measure values for each cell are returned. The first array is empty because no information on the adaptive grid is needed. The next arrays bring information about the dimension and the measure values.
| Name | Description | Type |
|---|---|---|
| qText | Text value of the dimension or the measure. | String |
| qNum | Numerical value of the dimension or the measure. Is set to 0 if the value is only text. |
Double precision floating point |
| qElemNumber | Unique identifier for each cell, calculated by the engine during the construction of the grid. This element number is not stored in the database and can have a positive or a negative value. |
Integer |
| qState | The default value is L. | One of:
|
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qHyperCubeDef .
- qPagesarray of objectsRequired
Array of pages to retrieve. Since the generic object contains two measures and one dimension, qWidth should be set to 3. If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight .
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qViewportobjectRequired
Defines the canvas and the zoom level. This parameter is not yet used and is optional.
qViewport properties
- qWidthinteger
Width of the canvas in pixels.
- qHeightinteger
Height of the canvas in pixels.
- qZoomLevelinteger
Zoom level.
-
- qDataRangesarray of objectsRequired
Range of the data to render. This range applies to the measure values. The lowest and highest values of a measure can be retrieved by using the GetLayout method (in /qHyperCube/qMeasureInfo ).
qDataRanges properties
- qLeftnumber
Position from the left. Corresponds to the lowest possible value of the first measure (the measure on the x-axis).
- qTopnumber
Position from the top. Corresponds to the highest possible value of the second measure (the measure on the y-axis).
- qWidthnumber
Width of the page. Corresponds to the highest possible value of the first measure (the measure on the x-axis).
- qHeightnumber
Height of the page. The difference between qTop and qHeight gives the lowest possible value of the second measure (the measure on the y-axis).
-
- qMaxNbrCellsintegerRequired
Maximum number of cells in the grid.
- qQueryLevelintegerRequired
Level of details. The higher the level, the more detailed information you get (zoom-in). When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points. The query level should be no greater than 20.
- qBinningMethodintegerRequired
Selects the algorithm. The default value is 0. One of:
- 0: Adaptive grid
- 1: Hexagonal grid
- 2: Uniform grid
Response
- qDataPagesarray of objects
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
Errors
arrayGetHyperCubeBinnedData(qPath, qPages, qViewport, qDataRanges, qMaxNbrCells, qQueryLevel, qBinningMethod)
const result = await genericObject.getHyperCubeBinnedData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }], { "qWidth": 123, "qHeight": 123, "qZoomLevel": 123}, [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }], 123, 123, 123)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeBinnedData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qViewport": { "qWidth": 123, "qHeight": 123, "qZoomLevel": 123 }, "qDataRanges": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qMaxNbrCells": 123, "qQueryLevel": 123, "qBinningMethod": 123 }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ] }}Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qHyperCubeDef .
- qOptionsobjectRequired
Defines the data to return.
qOptions properties
- qStartnumber
Start value.
- qEndnumber
End value.
- qNbrPointsinteger
Number of bins for binning.
- qMaxNbrTicksinteger
Maximum number of ticks.
- qMaxNumberLinesinteger
Maximum number of lines.
-
- qReverseSortboolean
If set to true the returned data pages are reverse sorted. Optional.
Response
- qDataPagesarray of objects
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
- qAxisDataobject
qAxisData properties
- qAxisarray of objects
List of axis data.
qAxis properties
- qNamestring
Name of the derived definition.
- qTagsarray of strings
List of tags.
- qTicksarray of objects
List of ticks.
qTicks properties
- qTextstring
Tick's label.
- qStartnumber
Start value.
- qEndnumber
End value.
-
-
-
Errors
arrayGetHyperCubeContinuousData(qPath, qOptions, qReverseSort?)
const result = await genericObject.getHyperCubeContinuousData("value", { "qStart": 123, "qEnd": 123, "qNbrPoints": 123, "qMaxNbrTicks": 123, "qMaxNumberLines": -1}, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeContinuousData", "params": { "qPath": "value", "qOptions": { "qStart": 123, "qEnd": 123, "qNbrPoints": 123, "qMaxNbrTicks": 123, "qMaxNumberLines": -1 }, "qReverseSort": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ], "qAxisData": { "qAxis": [ { "qName": "value", "qTags": [ "value" ], "qTicks": [ { "qText": "value", "qStart": 123, "qEnd": 123 } ] } ] } }}Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.
Limitations on the number of cells
The maximum for the combined total number of cells across all pages is:
- 10,000 cells. If this limit is exceeded, a calc-pages-too-large error with code 7009 is returned.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qPagesarray of objectsRequired
Array of pages to retrieve.
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
Response
- qDataPagesarray of objects
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
Errors
arrayGetHyperCubeData(qPath, qPages)
const result = await genericObject.getHyperCubeData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ] }}Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qPagesarray of objectsRequired
Array of pages to retrieve.
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
Response
- qDataPagesarray of objects
qDataPages properties
- qLeftarray of objects
Information about the left dimension values of a pivot table.
qLeft properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there is no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qToparray of objects
Information about the top dimension values of a pivot table. If there is no top dimension in the pivot table, information about the measures are given.
qTop properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there is no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qDataarray of arrays
Array of data.
qData properties
- qLabelstring
Label of the cell. This parameter is optional.
- qTextstring
Some text related to the cell.
- qNumnumber
Value of the cell.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
-
Errors
arrayGetHyperCubePivotData(qPath, qPages)
const result = await genericObject.getHyperCubePivotData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubePivotData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qLeft": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qUp": 123, "qDown": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qTop": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qUp": 123, "qDown": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qData": [ [ { "qLabel": "value", "qText": "value", "qNum": 123, "qType": "V", "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ] ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } } ] }}Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them. The reduction is dependent on the zoom factor (parameter qZoomFactor ) and on the reduction mode.
Bar chart or line chart data reduction
For the data reduction to happen, the following conditions must be fulfilled:
- The values cannot fit in the defined page (parameter qPages ).
- The zoom factor is not 0 (parameter qZoomFactor ).
- The reduction mode must be set to D1.
The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.
Example
If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.
Scatter plot chart data reduction
The reduction mode must be set to C. This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. The number of centroids can be defined in the parameter qZoomFactor.
Scatter plot chart resolution reduction
The reduction mode must be set to S. The resolution is reduced according to the zoom factor (parameter qZoomFactor ).
Example
If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qPagesarray of objectsRequired
Array of pages.
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qZoomFactorintegerRequired
Defines the zoom factor. If set to -1, the engine decides of the zoom factor.
- If the reduction mode is D1 or S , the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
- If the reduction mode is C , the zoom factor defines the number of centroids.
- qReductionModestringRequired
Defines the reduction mode.
One of:
- N or DATA_REDUCTION_NONE
- D1 or DATA_REDUCTION_ONEDIM
- S or DATA_REDUCTION_SCATTERED
- C or DATA_REDUCTION_CLUSTERED
- ST or DATA_REDUCTION_STACKED
Response
- qDataPagesarray of objects
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
Errors
arrayGetHyperCubeReducedData(qPath, qPages, qZoomFactor, qReductionMode)
const result = await genericObject.getHyperCubeReducedData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }], 123, "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeReducedData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qZoomFactor": 123, "qReductionMode": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ] }}Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qPagesarray of objectsRequired
Array of pages to retrieve.
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qMaxNbrCellsinteger
Maximum number of cells at outer level. The default value is 10 000.
Response
- qDataPagesarray of objects
qDataPages properties
- qDataarray of objects
Array of data.
qData properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qMaxPosnumber
Total of the positive values in the current group of cells.
- qMinNegnumber
Total of the negative values in the current group of cells.
- qUpinteger
Number of elements that are part of the previous tail.
- qDowninteger
Number of elements that are part of the next tail.
- qRowinteger
Row index in the data matrix. The indexing starts from 0.
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there are no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
-
Errors
arrayGetHyperCubeStackData(qPath, qPages, qMaxNbrCells?)
const result = await genericObject.getHyperCubeStackData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }], 123)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeStackData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qMaxNbrCells": 123 }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qData": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qMaxPos": 123, "qMinNeg": 123, "qUp": 123, "qDown": 123, "qRow": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } } ] }}Retrieves data for nodes in a tree structure. It is possible to retrieve specific pages of data.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected.
- qNodeOptionsobject
Specifies all the paging filters needed to define the tree to be fetched. If left out the complete tree is returned.
qNodeOptions properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
Response
- qNodesarray of objects
Represents a dimension in the tree.
qNodes properties
- qTextstring
The text version of the value, if available.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qElemNointeger
Element number.
- qGroupPosinteger
The position of this node inside it's group in the complete tree, i.e. Not dependant om what part is fetched.
- qGroupSizeinteger
Nbr of nodes connected to this node on the next level of the tree. Not dependant on what part is fetched.
- qRowinteger
Row index in the data matrix. The indexing starts from 0.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qValuesarray of objects
The measures for this node.
qValues properties
- qTextstring
The text version of the value, if available.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qNodesarray of undefineds
The children of this node in the fetched tree structure.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qMaxPosarray of numbers
Total of the positive values in the current group of cells.
- qMinNegarray of numbers
Total of the negative values in the current group of cells.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qTreePatharray of integers
The GroupPos of all prior nodes connected to this one, one position for each level of the tree. If this node is attached directly to the root, this array is empty.
-
Errors
arrayGetHyperCubeTreeData(qPath, qNodeOptions?)
const result = await genericObject.getHyperCubeTreeData("value", { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetHyperCubeTreeData", "params": { "qPath": "value", "qNodeOptions": { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qNodes": [ { "qText": "value", "qValue": 123, "qElemNo": 123, "qGroupPos": 123, "qGroupSize": 123, "qRow": 123, "qType": "V", "qValues": [ { "qText": "value", "qValue": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qMaxPos": [ 123 ], "qMinNeg": [ 123 ], "qCanExpand": true, "qCanCollapse": true, "qState": "L", "qTreePath": [ 123 ] } ] }}Returns the type and identifier of the object.
Response
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
Errors
arrayGetInfo()
const result = await genericObject.getInfo()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetInfo"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qInfo": { "qId": "value", "qType": "value" } }}Evaluates an object and displays its properties including the dynamic properties. If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.
Example:
A is a generic object and is the parent of the objects B and C. B is the parent of the objects D and E. A GetLayout call on A returns information on the objects A, B and C. A GetLayout call on B returns information on the objects B, D and E. A GetLayout call on C returns information on the object C.
Response
- qLayoutobject
Is the layout for GenericObjectProperties.
qLayout properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the object you want to link to. If you do not want to link your object, set this parameter to an empty string.
- qHasSoftPatchesboolean
Is set to true if the generic object contains some properties that are not persistent (a soft patch was applied).
- qErrorobject
qError properties
- qErrorCodeinteger
Error code.
-
- qSelectionInfoobject
qSelectionInfo properties
- qInSelectionsboolean
Is set to true if the visualization is in selection mode. For more information about the selection mode, see BeginSelections Method.
- qMadeSelectionsboolean
Is set to true if the visualization is in selection mode and if some selections have been made while in selection mode. For more information about the selection mode, see BeginSelections Method.
-
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListobject
Lists the app objects. Is the layout for AppObjectListDef.
An app object is a generic object created at app level.qAppObjectList properties
- qItemsarray of objects
Information about the list of dimensions.
qItems properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qDataobject
Contains dynamic JSON data specified by the client.
-
-
- qBookmarkListobject
Lists the bookmarks. Is the layout for BookmarkListDef.
qBookmarkList properties
- qItemsarray of objects
Information about the list of bookmarks.
qItems properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qDataobject
Contains dynamic JSON data specified by the client.
-
-
- qChildListobject
Lists the children of a generic object. Is the layout for ChildListDef.
ChildList is used by the _GetLayout Method_ to list the children of a generic object.qChildList properties
- qItemsarray of objects
Information about the items in the app object.
qItems properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qDataobject
Contains dynamic JSON data specified by the client.
-
-
- qDimensionListobject
Lists the dimensions. Is the layout for DimensionListDef.
qDimensionList properties
- qItemsarray of objects
Information about the list of dimensions.
qItems properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qDataobject
Contains dynamic JSON data specified by the client.
-
-
- qEmbeddedSnapshotobject
Renders the embedded snapshot in an object. The following is returned:
- Any dynamic properties defined in the bookmark
- Any properties defined in qEmbeddedSnapshot
Properties
"qEmbeddedSnapshot": {}
- qExtensionListobject
Obsolete, use qrs API's to fetch extensions.
qExtensionList properties
- qItemsarray of strings
-
- qFieldListobject
Lists the fields present in the data model viewer. Is the layout for FieldListDef.
qFieldList properties
- qItemsarray of objects
Array of items.
qItems properties
- qIsSemanticboolean
If set to true, it means that the field is a semantic.
- qIsHiddenboolean
If set to true, it means that the field is hidden.
- qIsSystemboolean
If set to true, it means that the field is a system field.
- qAndModeboolean
If set to true a logical AND (instead of a logical OR) is used when making selections in a field. The default value is false.
- qNamestring
Name of the field
- qCardinalinteger
Number of distinct field values
- qTagsarray of strings
Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII
- qIsDefinitionOnlyboolean
If set to true, it means that the field is a field on the fly.
- qDerivedFieldDataobject
qDerivedFieldData properties
- qDerivedFieldListsarray of objects
Information about the derived fields.
qDerivedFieldLists properties
- qDerivedDefinitionNamestring
Name of the derived definition.
- qFieldDefsarray of objects
List of the derived fields.
qFieldDefs properties
- qIdstring
Identifier of the derived field. The identifier is unique.
- qNamestring
Combination of field name, definition and method. Example: OrderDate.MyDefinition.Year
- qMethodstring
Method name associated to the derived field.
- qExprstring
Expression of the derived field. Example: If qName is OrderDate.MyDefinition.Year , the expression is as follows: =${Mydefinition(OrderDate).Year}
- qTagsarray of strings
List of tags.
-
- qGroupDefsarray of objects
List of the derived groups.
qGroupDefs properties
- qIdstring
Identifier of the group.
- qNamestring
Name of the derived group.
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
List of the derived fields in the group.
-
- qTagsarray of strings
List of tags on the derived fields.
-
-
- qIsDetailboolean
Is used for Direct Discovery. If set to true, it means that the type of the field is detail.
- qIsImplicitboolean
Is used for Direct Discovery. If set to true, it means that the type of the field is measure.
- qReadableNamestring
-
-
- qHyperCubeobject
Renders the properties of a hypercube. Is the layout for HyperCubeDef. For more information about the definition of a hypercube, see Generic object.
What is returned in HyperCube depends on the type of the hypercube (straight, pivot or stacked table, or tree) and on the method called (GetLayout, GetHyperCubeData, GetHyperCubePivotData, GetHyperCubeStackData, GetHyperCubeTreeData).qHyperCube properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionInfoarray of objects
Information on the dimension.
qDimensionInfo properties
- qFallbackTitlestring
Corresponds to the label of the dimension that is selected. If the label is not defined then the field name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalintegerDeprecated
Number of distinct field values.
- qLockedboolean
Is set to true if the field is locked.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qGroupFallbackTitlesarray of strings
Array of dimension labels. Contains the labels of all dimensions in a hierarchy group (for example the labels of all dimensions in a drill down group).
- qGroupPosinteger
Index of the dimension that is currently in use. qGroupPos is set to 0 if there are no hierarchical groups (drill-down groups) or cycle groups.
- qStateCountsobject
qStateCounts properties
- qLockedinteger
Number of values in locked state.
- qSelectedinteger
Number of values in selected state.
- qOptioninteger
Number of values in optional state.
- qDeselectedinteger
Number of values in deselected state.
- qAlternativeinteger
Number of values in alternative state.
- qExcludedinteger
Number of values in excluded state.
- qSelectedExcludedinteger
Number of values in selected excluded state.
- qLockedExcludedinteger
Number of values in locked excluded state.
-
- qTagsarray of strings
Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionTypestring
Can be one of: "D""N""T"
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qGroupingstring
Can be one of: "N""H""C"
- qIsSemanticboolean
If set to true, it means that the field is a semantic.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's definition.
- qGroupFieldDefsarray of strings
Array of field names.
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qContinuousAxesboolean
Is continuous axis used.
- qIsCyclicboolean
Is a cyclic dimension used.
- qDerivedFieldboolean
Is derived field is used as a dimension.
- qAttrExprInfoarray of objects
Array of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
Array of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qIsCalculatedboolean
True if this is a calculated dimension.
- qIsOneAndOnlyOneboolean
If set to true, it means that the field always has one and only one selected value.
- qCardinalitiesobject
qCardinalities properties
- qCardinalinteger
Number of distinct field values.
- qHypercubeCardinalinteger
Number of distinct hypercube values.
- qAllValuesCardinalinteger
Number of distinct values when paging for AllValues in a Tree Structure. Default is -1 if not part of a Tree structure.
-
- qLibraryIdstring
Refers to a dimension stored in the library.
- qEffectiveDimensionNamestringExperimental
The expanded and stripped dimension name used internally in engine.
-
- qMeasureInfoarray of objects
Information on the measure.
qMeasureInfo properties
- qFallbackTitlestring
Corresponds to the label of the measure. If the label is not defined then the measure name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalinteger
Number of distinct field values.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qMinnumber
Lowest value in the range.
- qMaxnumber
Highest value in the range.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
List of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qLibraryIdstring
Refers to a dimension stored in the library.
- qTrendLinesarray of objectsExperimental
Calculated trendlines
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qCoeffarray of numbers
Coefficent c0..cN depending on the trendline type.
- qR2number
R2 score. Value between 0..1 that shows the correlation between the trendline and the data. Higher value means higher correlation.
- qExpressionstring
Trendline expression
- qElemNointeger
Inner Dim elem no
-
- qMiniChartobject
qMiniChart properties
- qYMinnumber
- qYMaxnumber
- qXMinnumber
- qXMaxnumber
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
-
- qEffectiveInterColumnSortOrderarray of integers
Sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted was the column 1, followed by the column 0 and the column 2.
- qGrandTotalRowarray of objects
Aggregate for measures of all values in the field. The result value depends on the qAggrFunc defined in HyperCubeDef.
qGrandTotalRow properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qDataPagesarray of objects
Set of data. Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
- qPivotDataPagesarray of objects
Set of data for pivot tables. Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.
qPivotDataPages properties
- qLeftarray of objects
Information about the left dimension values of a pivot table.
qLeft properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there is no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qToparray of objects
Information about the top dimension values of a pivot table. If there is no top dimension in the pivot table, information about the measures are given.
qTop properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight .
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there is no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qDataarray of arrays
Array of data.
qData properties
- qLabelstring
Label of the cell. This parameter is optional.
- qTextstring
Some text related to the cell.
- qNumnumber
Value of the cell.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
-
- qStackedDataPagesarray of objects
Set of data for stacked tables. Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.
qStackedDataPages properties
- qDataarray of objects
Array of data.
qData properties
- qTextstring
Some text.
- qElemNointeger
Rank number of the value. If set to -1, it means that the value is not an element number.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qMaxPosnumber
Total of the positive values in the current group of cells.
- qMinNegnumber
Total of the negative values in the current group of cells.
- qUpinteger
Number of elements that are part of the previous tail.
- qDowninteger
Number of elements that are part of the next tail.
- qRowinteger
Row index in the data matrix. The indexing starts from 0.
- qSubNodesarray of undefineds
Information about sub nodes (or sub cells). The array is empty [ ] when there are no sub nodes.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
-
- qModestring
Can be one of: "S""P""K""T""D"
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category
- One pseudo dimension in position 1
- Three left dimensions.
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position -1.
- Three left dimensions.
implies that:
- The index -1 corresponds to the pseudo dimension; the pseudo dimension is the most to the right.
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- qIndentModeboolean
Is used for pivot tables only. If set to true, the formatting of the results is slightly different. This property is optional.
- qLastExpandedPosobject
qLastExpandedPos properties
- qxinteger
Position of the cell on the x-axis.
- qyinteger
Position of the cell on the y-axis.
-
- qHasOtherValuesboolean
True if other row exists.
- qTitlestring
Title of the hypercube, for example the title of a chart.
- qTreeNodesOnDimarray of integers
The total number of nodes on each dimension (only applicable when qMode = T ).
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qColumnOrderarray of integers
The order of the columns.
-
- qListObjectobject
Renders the properties of a list object. Is the layout for ListObjectDef. For more information about the definition of a list object, see Generic object.
ListObject is used by the _GetLayout Method_ to display the properties of a list object.qListObject properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionInfoobject
qDimensionInfo properties
- qFallbackTitlestring
Corresponds to the label of the dimension that is selected. If the label is not defined then the field name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalintegerDeprecated
Number of distinct field values.
- qLockedboolean
Is set to true if the field is locked.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qGroupFallbackTitlesarray of strings
Array of dimension labels. Contains the labels of all dimensions in a hierarchy group (for example the labels of all dimensions in a drill down group).
- qGroupPosinteger
Index of the dimension that is currently in use. qGroupPos is set to 0 if there are no hierarchical groups (drill-down groups) or cycle groups.
- qStateCountsobject
qStateCounts properties
- qLockedinteger
Number of values in locked state.
- qSelectedinteger
Number of values in selected state.
- qOptioninteger
Number of values in optional state.
- qDeselectedinteger
Number of values in deselected state.
- qAlternativeinteger
Number of values in alternative state.
- qExcludedinteger
Number of values in excluded state.
- qSelectedExcludedinteger
Number of values in selected excluded state.
- qLockedExcludedinteger
Number of values in locked excluded state.
-
- qTagsarray of strings
Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionTypestring
Can be one of: "D""N""T"
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qGroupingstring
Can be one of: "N""H""C"
- qIsSemanticboolean
If set to true, it means that the field is a semantic.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's definition.
- qGroupFieldDefsarray of strings
Array of field names.
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qContinuousAxesboolean
Is continuous axis used.
- qIsCyclicboolean
Is a cyclic dimension used.
- qDerivedFieldboolean
Is derived field is used as a dimension.
- qAttrExprInfoarray of objects
Array of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
Array of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qIsCalculatedboolean
True if this is a calculated dimension.
- qIsOneAndOnlyOneboolean
If set to true, it means that the field always has one and only one selected value.
- qCardinalitiesobject
qCardinalities properties
- qCardinalinteger
Number of distinct field values.
- qHypercubeCardinalinteger
Number of distinct hypercube values.
- qAllValuesCardinalinteger
Number of distinct values when paging for AllValues in a Tree Structure. Default is -1 if not part of a Tree structure.
-
- qLibraryIdstring
Refers to a dimension stored in the library.
- qEffectiveDimensionNamestringExperimental
The expanded and stripped dimension name used internally in engine.
-
- qExpressionsarray of objects
Lists the expressions in the list object.
qExpressions properties
- qExprstring
Value of the expression.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code.
-
-
- qDataPagesarray of objects
Set of data. Is empty if nothing has been defined in qInitialDataFetch in ListObjectDef.
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
-
- qMeasureListobject
Lists the measures. Is the layout for MeasureListDef.
qMeasureList properties
- qItemsarray of objects
Information about the list of measures.
qItems properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qDataobject
Contains dynamic JSON data specified by the client.
-
-
- qMediaListobject
Lists the media files. Is the layout for MediaListDef.
This struct is deprecated.qMediaList properties
- qItemsarray of objects
Information about the list of media files. In Qlik Sense Desktop, the media files are retrieved from: %userprofile%\Documents\Qlik\Sense\Content\Default In Qlik Sense Enterprise, the media files are retrieved from: <installation_directory>\Qlik\Sense\Repository\Content\Default The default installation directory is ProgramData .
qItems properties
- qUrlDefstring
Relative path to the media file. The URL is static. Media files located:
- in the /content/default/ folder are outside the qvf file.
- in the /media/ folder are embedded in the qvf file.
- qUrlstring
Relative path to the media file. Media files located:
- in the /content/default/ folder are outside the qvf file.
- in the /media/ folder are embedded in the qvf file.
-
-
- qNxLibraryDimensionobject
qNxLibraryDimension properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureobject
Information about the library measure. Is the layout for NxLibraryMeasureDef.
qNxLibraryMeasure properties
- qLabelstring
- qDefstring
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
- qActiveExpressioninteger
- qLabelExpressionstring
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectobject
Indicates which selections are currently applied. It gives the current selections. Is the layout for SelectionObjectDef.
qSelectionObject properties
- qBackCountinteger
Number of steps back.
- qForwardCountinteger
Number of steps forward.
- qSelectionsarray of objects
Lists the fields that are selected.
qSelections properties
- qTotalinteger
Number of values in the field.
- qIsNumboolean
This parameter is displayed if its value is true. Is set to true if the field is a numeric. This parameter is optional.
- qFieldstring
Name of the field that is selected.
- qLockedboolean
This parameter is displayed if its value is true. Is set to true if the field is locked. This parameter is optional.
- qOneAndOnlyOneboolean
This parameter is displayed if its value is true. Property that is set to a field. Is set to true if the field cannot be unselected. This parameter is optional.
- qTextSearchstring
Text that was used for the search. This parameter is filled when searching for a value and selecting it. This parameter is optional.
- qSelectedCountinteger
Number of values that are selected.
- qSelectedstring
Values that are selected.
- qRangeInfoarray of objects
Information about the range of selected values. Is empty if there is no range of selected values.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSortIndexinteger
Sort index of the field. Indexing starts from 0.
- qStateCountsobject
qStateCounts properties
- qLockedinteger
Number of values in locked state.
- qSelectedinteger
Number of values in selected state.
- qOptioninteger
Number of values in optional state.
- qDeselectedinteger
Number of values in deselected state.
- qAlternativeinteger
Number of values in alternative state.
- qExcludedinteger
Number of values in excluded state.
- qSelectedExcludedinteger
Number of values in selected excluded state.
- qLockedExcludedinteger
Number of values in locked excluded state.
-
- qSelectedFieldSelectionInfoarray of objects
Information about the fields that are selected.
qSelectedFieldSelectionInfo properties
- qNamestring
Name of the field.
- qFieldSelectionModestring
Can be one of: "NORMAL""AND""NOT"
-
- qNotSelectedFieldSelectionInfoarray of objects
Information about the fields that are not selected.
qNotSelectedFieldSelectionInfo properties
- qNamestring
Name of the field.
- qFieldSelectionModestring
Can be one of: "NORMAL""AND""NOT"
-
- qSelectionThresholdinteger
Maximum values to show in the current selections. The default value is 6.
- qReadableNamestring
Label that, if defined, is displayed in current selections instead of the actual expression. ReadableName is only used with field-on-the-fly.
- qIsHiddenboolean
Optional parameter. Indicates if the selection is to be hidden in the Selections bar. Is set to true if the current selection is hidden.
- qDimensionReferencesarray of objectsExperimental
List of dimensions in the app that refer to the data model field of an NxCurrentSelectionItem.
qDimensionReferences properties
- qIdstring
Identifier of the associated dimension.
- qLabelstring
Text label.
-
-
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlobjectIn addition, this structure can return dynamic properties.
qStaticContentUrl properties
- qUrlstring
Relative path of the thumbnail.
-
- qTreeDataobject
Renders the properties of a TreeData object. Is the layout for TreeDataDef. For more information about the definition of TreeData, see Generic object.
To retrieve data from the TreeData object, use the method called GetHyperCubeTreeData.qTreeData properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qNodesOnDimarray of integers
The total number of nodes on each dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionInfoarray of objects
Information on the dimension.
qDimensionInfo properties
- qFallbackTitlestring
Corresponds to the label of the dimension that is selected. If the label is not defined then the field name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalintegerDeprecated
Number of distinct field values.
- qLockedboolean
Is set to true if the field is locked.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qGroupFallbackTitlesarray of strings
Array of dimension labels. Contains the labels of all dimensions in a hierarchy group (for example the labels of all dimensions in a drill down group).
- qGroupPosinteger
Index of the dimension that is currently in use. qGroupPos is set to 0 if there are no hierarchical groups (drill-down groups) or cycle groups.
- qStateCountsobject
qStateCounts properties
- qLockedinteger
Number of values in locked state.
- qSelectedinteger
Number of values in selected state.
- qOptioninteger
Number of values in optional state.
- qDeselectedinteger
Number of values in deselected state.
- qAlternativeinteger
Number of values in alternative state.
- qExcludedinteger
Number of values in excluded state.
- qSelectedExcludedinteger
Number of values in selected excluded state.
- qLockedExcludedinteger
Number of values in locked excluded state.
-
- qTagsarray of strings
Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qDimensionTypestring
Can be one of: "D""N""T"
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qGroupingstring
Can be one of: "N""H""C"
- qIsSemanticboolean
If set to true, it means that the field is a semantic.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's definition.
- qGroupFieldDefsarray of strings
Array of field names.
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qContinuousAxesboolean
Is continuous axis used.
- qIsCyclicboolean
Is a cyclic dimension used.
- qDerivedFieldboolean
Is derived field is used as a dimension.
- qMeasureInfoarray of objects
A List of measures to be calculated on this TreeDimension.
qMeasureInfo properties
- qFallbackTitlestring
Corresponds to the label of the measure. If the label is not defined then the measure name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalinteger
Number of distinct field values.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qMinnumber
Lowest value in the range.
- qMaxnumber
Highest value in the range.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
List of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qLibraryIdstring
Refers to a dimension stored in the library.
- qTrendLinesarray of objectsExperimental
Calculated trendlines
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qCoeffarray of numbers
Coefficent c0..cN depending on the trendline type.
- qR2number
R2 score. Value between 0..1 that shows the correlation between the trendline and the data. Higher value means higher correlation.
- qExpressionstring
Trendline expression
- qElemNointeger
Inner Dim elem no
-
- qMiniChartobject
qMiniChart properties
- qYMinnumber
- qYMaxnumber
- qXMinnumber
- qXMaxnumber
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
-
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
List of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qIsCalculatedboolean
True if this is a calculated dimension.
- qIsOneAndOnlyOneboolean
If set to true, it means that the field always has one and only one selected value.
- qCardinalitiesobject
qCardinalities properties
- qCardinalinteger
Number of distinct field values.
- qHypercubeCardinalinteger
Number of distinct hypercube values.
- qAllValuesCardinalinteger
Number of distinct values when paging for AllValues in a Tree Structure. Default is -1 if not part of a Tree structure.
-
- qLibraryIdstring
Refers to a dimension stored in the library.
- qEffectiveDimensionNamestringExperimental
The expanded and stripped dimension name used internally in engine.
-
- qEffectiveInterColumnSortOrderarray of integers
Defines the order of the dimenion levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2.
- qHasOtherValuesboolean
True if other row exists.
- qTitlestring
Title of the TreeData object, for example the title of a chart.
- qLastExpandedPosobject
qLastExpandedPos properties
- qxinteger
Position of the cell on the x-axis.
- qyinteger
Position of the cell on the y-axis.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qTreeDataPagesarray of objects
Set of data. Is empty if nothing has been defined in qInitialDataFetch in TreeDataDef.
qTreeDataPages properties
- qTextstring
The text version of the value, if available.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qElemNointeger
Element number.
- qGroupPosinteger
The position of this node inside it's group in the complete tree, i.e. Not dependant om what part is fetched.
- qGroupSizeinteger
Nbr of nodes connected to this node on the next level of the tree. Not dependant on what part is fetched.
- qRowinteger
Row index in the data matrix. The indexing starts from 0.
- qTypestring
Can be one of: "V""E""N""T""O""A""P""R""U""G"
- qValuesarray of objects
The measures for this node.
qValues properties
- qTextstring
The text version of the value, if available.
- qValuenumber
Value of the cell. Is set to NaN , if the value is not a number.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
-
- qNodesarray of undefineds
The children of this node in the fetched tree structure.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qMaxPosarray of numbers
Total of the positive values in the current group of cells.
- qMinNegarray of numbers
Total of the negative values in the current group of cells.
- qCanExpandboolean
If set to true, it means that the cell can be expanded. This parameter is not returned if it is set to false.
- qCanCollapseboolean
If set to true, it means that the cell can be collapsed. This parameter is not returned if it is set to false.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qTreePatharray of integers
The GroupPos of all prior nodes connected to this one, one position for each level of the tree. If this node is attached directly to the root, this array is empty.
-
- qMeasureInfoarray of objects
Information on the measures calculated on the whole tree.
qMeasureInfo properties
- qFallbackTitlestring
Corresponds to the label of the measure. If the label is not defined then the measure name is used.
- qApprMaxGlyphCountinteger
Length of the longest value in the field.
- qCardinalinteger
Number of distinct field values.
- qSortIndicatorstring
Can be one of: "N""A""D"
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qMinnumber
Lowest value in the range.
- qMaxnumber
Highest value in the range.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qAttrDimInfoarray of objects
List of attribute dimensions.
qAttrDimInfo properties
- qCardinalinteger
Cardinality of the attribute expression.
- qSizeobject
qSize properties
- qcxinteger
Number of pixels on the x axis.
- qcyinteger
Number of pixels on the y axis.
-
- qFallbackTitlestring
The title for the attribute dimension.
- qLockedboolean
The Locked value of the dimension.
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qIsCalculatedboolean
True if this is a calculated dimension.
-
- qCalcCondMsgstring
The message displayed if calculation condition is not fulfilled.
- qLibraryIdstring
Refers to a dimension stored in the library.
- qTrendLinesarray of objectsExperimental
Calculated trendlines
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
- qCoeffarray of numbers
Coefficent c0..cN depending on the trendline type.
- qR2number
R2 score. Value between 0..1 that shows the correlation between the trendline and the data. Higher value means higher correlation.
- qExpressionstring
Trendline expression
- qElemNointeger
Inner Dim elem no
-
- qMiniChartobject
qMiniChart properties
- qYMinnumber
- qYMaxnumber
- qXMinnumber
- qXMaxnumber
- qAttrExprInfoarray of objects
List of attribute expressions.
qAttrExprInfo properties
- qMinnumber
Minimum value.
- qMaxnumber
Maximum value.
- qFallbackTitlestring
- qMinTextstring
String version of the minimum Value.
- qMaxTextstring
String version of the maximum Value.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qIsAutoFormatboolean
This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.
-
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
-
-
- qUndoInfoobject
Displays information about the number of possible undos and redos. Is the layout for UndoInfoDef.
qUndoInfo properties
- qUndoCountinteger
Number of possible undos.
- qRedoCountinteger
Number of possible redos.
-
- qVariableListobject
Lists the variables in an app. Is the layout for VariableListDef.
qVariableList properties
- qItemsarray of objects
List of the variables.
qItems properties
- qNamestring
Name of the variable.
- qDescriptionstring
Description of the variable.
- qDefinitionstring
Definition of the variable. It can be a value or an expression.
- qIsConfigboolean
If set to true, it means that the variable is a system variable. A system variable provides information about the system and is set by the engine. The content cannot be changed by the user. This parameter is optional. The default value is false.
- qIsReservedboolean
If set to true, it means that the variable is reserved. The default value is false. This parameter is optional. Examples:
- ScriptError is a reserved variable, set by the engine.
- DayNames is a reserved variable, set by the user.
- qMetaobject
Layout for NxMetaDef.
qMeta properties
- qNamestring
Name. This property is optional.
-
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qDataobject
Contains dynamic JSON data specified by the client.
- qIsScriptCreatedboolean
If set to true, it means that the variable was defined via script.
-
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Errors
arrayGetLayout()
const result = await genericObject.getLayout()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetLayout"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qLayout": { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qExtendsId": "value", "qHasSoftPatches": true, "qError": { "qErrorCode": 123 }, "qSelectionInfo": { "qInSelections": true, "qMadeSelections": true }, "qStateName": "value", "qAppObjectList": { "qItems": [ { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qData": {} } ] }, "qBookmarkList": { "qItems": [ { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qData": {} } ] }, "qChildList": { "qItems": [ { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qData": {} } ] }, "qDimensionList": { "qItems": [ { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qData": {} } ] }, "qEmbeddedSnapshot": {}, "qExtensionList": { "qItems": [ "value" ] }, "qFieldList": { "qItems": [ { "qIsSemantic": true, "qIsHidden": true, "qIsSystem": true, "qAndMode": true, "qName": "value", "qCardinal": 123, "qTags": [ "value" ], "qIsDefinitionOnly": true, "qDerivedFieldData": { "qDerivedFieldLists": [ { "qDerivedDefinitionName": "value", "qFieldDefs": [ { "qId": "value", "qName": "value", "qMethod": "value", "qExpr": "value", "qTags": [ "value" ] } ], "qGroupDefs": [ { "qId": "value", "qName": "value", "qGrouping": "N", "qFieldDefs": [ "value" ] } ], "qTags": [ "value" ] } ] }, "qIsDetail": true, "qIsImplicit": true, "qReadableName": "value" } ] }, "qHyperCube": { "qStateName": "value", "qSize": { "qcx": 123, "qcy": 123 }, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionInfo": [ { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qLocked": true, "qSortIndicator": "N", "qGroupFallbackTitles": [ "value" ], "qGroupPos": 123, "qStateCounts": { "qLocked": 123, "qSelected": 123, "qOption": 123, "qDeselected": 123, "qAlternative": 123, "qExcluded": 123, "qSelectedExcluded": 123, "qLockedExcluded": 123 }, "qTags": [ "value" ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionType": "D", "qReverseSort": true, "qGrouping": "N", "qIsSemantic": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true, "qGroupFieldDefs": [ "value" ], "qMin": 123, "qMax": 123, "qContinuousAxes": true, "qIsCyclic": true, "qDerivedField": true, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qIsCalculated": false, "qIsOneAndOnlyOne": true, "qCardinalities": { "qCardinal": 123, "qHypercubeCardinal": 123, "qAllValuesCardinal": -1 }, "qLibraryId": "value", "qEffectiveDimensionName": "value" } ], "qMeasureInfo": [ { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qSortIndicator": "N", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qReverseSort": true, "qIsAutoFormat": true, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qLibraryId": "value", "qTrendLines": [ { "qType": "AVERAGE", "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qCoeff": [ 123 ], "qR2": 123, "qExpression": "value", "qElemNo": 123 } ], "qMiniChart": { "qYMin": 123, "qYMax": 123, "qXMin": 123, "qXMax": 123, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } } } ], "qEffectiveInterColumnSortOrder": [ 123 ], "qGrandTotalRow": [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ], "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ], "qPivotDataPages": [ { "qLeft": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qUp": 123, "qDown": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qTop": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qUp": 123, "qDown": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qData": [ [ { "qLabel": "value", "qText": "value", "qNum": 123, "qType": "V", "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ] ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } } ], "qStackedDataPages": [ { "qData": [ { "qText": "value", "qElemNo": 123, "qValue": 123, "qCanExpand": true, "qCanCollapse": true, "qType": "V", "qMaxPos": 123, "qMinNeg": 123, "qUp": 123, "qDown": 123, "qRow": 123, "qSubNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } } ], "qMode": "S", "qNoOfLeftDims": 123, "qIndentMode": true, "qLastExpandedPos": { "qx": 123, "qy": 123 }, "qHasOtherValues": true, "qTitle": "value", "qTreeNodesOnDim": [ 123 ], "qCalcCondMsg": "value", "qColumnOrder": [ 123 ] }, "qListObject": { "qStateName": "value", "qSize": { "qcx": 123, "qcy": 123 }, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionInfo": { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qLocked": true, "qSortIndicator": "N", "qGroupFallbackTitles": [ "value" ], "qGroupPos": 123, "qStateCounts": { "qLocked": 123, "qSelected": 123, "qOption": 123, "qDeselected": 123, "qAlternative": 123, "qExcluded": 123, "qSelectedExcluded": 123, "qLockedExcluded": 123 }, "qTags": [ "value" ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionType": "D", "qReverseSort": true, "qGrouping": "N", "qIsSemantic": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true, "qGroupFieldDefs": [ "value" ], "qMin": 123, "qMax": 123, "qContinuousAxes": true, "qIsCyclic": true, "qDerivedField": true, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qIsCalculated": false, "qIsOneAndOnlyOne": true, "qCardinalities": { "qCardinal": 123, "qHypercubeCardinal": 123, "qAllValuesCardinal": -1 }, "qLibraryId": "value", "qEffectiveDimensionName": "value" }, "qExpressions": [ { "qExpr": "value", "qError": { "qErrorCode": 123 } } ], "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ] }, "qMeasureList": { "qItems": [ { "qInfo": { "qId": "value", "qType": "value" }, "qMeta": { "qName": "value" }, "qData": {} } ] }, "qMediaList": { "qItems": [ { "qUrlDef": "value", "qUrl": "value" } ] }, "qNxLibraryDimension": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": true, "qOrigin": "PROGRAM" }, "qNxLibraryMeasure": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": true, "qOrigin": "PROGRAM" }, "qSelectionObject": { "qBackCount": 123, "qForwardCount": 123, "qSelections": [ { "qTotal": 123, "qIsNum": true, "qField": "value", "qLocked": true, "qOneAndOnlyOne": true, "qTextSearch": "value", "qSelectedCount": 123, "qSelected": "value", "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSortIndex": 123, "qStateCounts": { "qLocked": 123, "qSelected": 123, "qOption": 123, "qDeselected": 123, "qAlternative": 123, "qExcluded": 123, "qSelectedExcluded": 123, "qLockedExcluded": 123 }, "qSelectedFieldSelectionInfo": [ { "qName": "value", "qFieldSelectionMode": "NORMAL" } ], "qNotSelectedFieldSelectionInfo": [ { "qName": "value", "qFieldSelectionMode": "NORMAL" } ], "qSelectionThreshold": 123, "qReadableName": "value", "qIsHidden": true, "qDimensionReferences": [ { "qId": "value", "qLabel": "value" } ] } ], "qStateName": "value" }, "qStaticContentUrl": { "qUrl": "value" }, "qTreeData": { "qStateName": "value", "qNodesOnDim": [ 123 ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionInfo": [ { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qLocked": true, "qSortIndicator": "N", "qGroupFallbackTitles": [ "value" ], "qGroupPos": 123, "qStateCounts": { "qLocked": 123, "qSelected": 123, "qOption": 123, "qDeselected": 123, "qAlternative": 123, "qExcluded": 123, "qSelectedExcluded": 123, "qLockedExcluded": 123 }, "qTags": [ "value" ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qDimensionType": "D", "qReverseSort": true, "qGrouping": "N", "qIsSemantic": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true, "qGroupFieldDefs": [ "value" ], "qMin": 123, "qMax": 123, "qContinuousAxes": true, "qIsCyclic": true, "qDerivedField": true, "qMeasureInfo": [ { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qSortIndicator": "N", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qReverseSort": true, "qIsAutoFormat": true, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qLibraryId": "value", "qTrendLines": [ { "qType": "AVERAGE", "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qCoeff": [ 123 ], "qR2": 123, "qExpression": "value", "qElemNo": 123 } ], "qMiniChart": { "qYMin": 123, "qYMax": 123, "qXMin": 123, "qXMax": 123, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } } } ], "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qIsCalculated": false, "qIsOneAndOnlyOne": true, "qCardinalities": { "qCardinal": 123, "qHypercubeCardinal": 123, "qAllValuesCardinal": -1 }, "qLibraryId": "value", "qEffectiveDimensionName": "value" } ], "qEffectiveInterColumnSortOrder": [ 123 ], "qHasOtherValues": true, "qTitle": "value", "qLastExpandedPos": { "qx": 123, "qy": 123 }, "qCalcCondMsg": "value", "qTreeDataPages": [ { "qText": "value", "qValue": 123, "qElemNo": 123, "qGroupPos": 123, "qGroupSize": 123, "qRow": 123, "qType": "V", "qValues": [ { "qText": "value", "qValue": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] } } ], "qNodes": [], "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qMaxPos": [ 123 ], "qMinNeg": [ 123 ], "qCanExpand": true, "qCanCollapse": true, "qState": "L", "qTreePath": [ 123 ] } ], "qMeasureInfo": [ { "qFallbackTitle": "value", "qApprMaxGlyphCount": 123, "qCardinal": 123, "qSortIndicator": "N", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qReverseSort": true, "qIsAutoFormat": true, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qAttrDimInfo": [ { "qCardinal": 123, "qSize": { "qcx": 123, "qcy": 123 }, "qFallbackTitle": "value", "qLocked": true, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qIsCalculated": false } ], "qCalcCondMsg": "value", "qLibraryId": "value", "qTrendLines": [ { "qType": "AVERAGE", "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" }, "qCoeff": [ 123 ], "qR2": 123, "qExpression": "value", "qElemNo": 123 } ], "qMiniChart": { "qYMin": 123, "qYMax": 123, "qXMin": 123, "qXMax": 123, "qAttrExprInfo": [ { "qMin": 123, "qMax": 123, "qFallbackTitle": "value", "qMinText": "value", "qMaxText": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qIsAutoFormat": true } ], "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } } } ] }, "qUndoInfo": { "qUndoCount": 123, "qRedoCount": 123 }, "qVariableList": { "qItems": [ { "qName": "value", "qDescription": "value", "qDefinition": "value", "qIsConfig": false, "qIsReserved": false, "qMeta": { "qName": "value" }, "qInfo": { "qId": "value", "qType": "value" }, "qData": {}, "qIsScriptCreated": true } ] } } }}Lists the linked objects to a generic object, a dimension or a measure.
Response
- qItemsarray of objects
qItems properties
- qRootIdstring
Identifier of the root object. If the linked object is a child, the root identifier is the identifier of the parent. If the linked object is an app object, the root identifier is the same than the identifier of the linked object since the linked object is a root object.
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
-
Errors
arrayGetLinkedObjects()
const result = await genericObject.getLinkedObjects()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetLinkedObjects"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qItems": [ { "qRootId": "value", "qInfo": { "qId": "value", "qType": "value" } } ] }}Retrieves the values of a list object. A data set is returned.
Limitations on the number of cells
The maximum for the combined total number of cells across all pages is:
- 10,000 cells. If this limit is exceeded, a calc-pages-too-large error with code 7009 is returned.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qPagesarray of objectsRequired
Array of pages you are interested in.
qPages properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
Response
- qDataPagesarray of objects
qDataPages properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text. This parameter is optional.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qStatestring
Can be one of: "L""S""O""D""A""X""XS""XL""NSTATES"
- qIsEmptyboolean
Is set to true , if qText and qNum are empty. This parameter is optional. The default value is false .
- qIsTotalCellboolean
Is set to true if a total is displayed in the cell. This parameter is optional. The default value is false . Not applicable to list objects.
- qIsOtherCellboolean
Is set to true if the cell belongs to the group Others . Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp . This parameter is optional. The default value is false . Not applicable to list objects.
- qFrequencystring
Frequency of the value. This parameter is optional.
- qHighlightRangesobject
qHighlightRanges properties
- qRangesarray of objects
Ranges of highlighted values.
qRanges properties
- qCharPosinteger
Position of the first search occurrence.
- qCharCountinteger
Number of occurrences found.
-
-
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
- qAttrDimsobject
qAttrDims properties
- qValuesarray of objects
List of values.
qValues properties
- qTextstring
Text related to the attribute expression value. This property is optional. No text is returned if the attribute expression value is a numeric.
- qElemNointeger
Element number.
-
-
- qIsNullboolean
Is set to true if the value is Null.
- qMiniChartobject
qMiniChart properties
- qMatrixarray of arrays
Array of data.
qMatrix properties
- qTextstring
Some text.
- qNumnumber
A value. This parameter is optional.
- qElemNumberinteger
Rank number of the value, starting from 0. If the element number is a negative number, it means that the returned value is not an element number. You can get the following negative values:
- -1: the cell is a Total cell. It shows a total.
- -2: the cell is a Null cell.
- -3: the cell belongs to the group Others .
- -4: the cell is empty. Applies to pivot tables.
- qAttrExpsobject
qAttrExps properties
- qValuesarray of objects
List of attribute expressions values.
qValues properties
- qTextstring
Text related to the attribute expression value.
- qNumnumber
Numeric value of the attribute expression. Set to NaN (Not a Number) if the attribute expression value is not numeric.
-
-
-
- qMinnumber
- qMaxnumber
- qErrorobject
qError properties
- qErrorCodeinteger
Error code. This parameter is always displayed in case of error.
- qContextstring
Context related to the error, from the user app domain. It can be the identifier of an object, a field name, a table name. This parameter is optional.
- qExtendedMessagestring
Internal information from the server. This parameter is optional.
-
-
- qInExtRowboolean
-
- qTailsarray of objects
Array of tails. Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail. If there is no tail, the array is empty [ ] .
qTails properties
- qUpinteger
Number of elements that are part of the previous tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight . Is not shown if the value is 0. This parameter is optional.
- qDowninteger
Number of elements that are part of the next tail. This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight Is not shown if the value is 0. This parameter is optional.
-
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qIsReducedboolean
Is set to true, if the data have been reduced. The default value is false.
-
Errors
arrayGetListObjectData(qPath, qPages)
const result = await genericObject.getListObjectData("value", [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetListObjectData", "params": { "qPath": "value", "qPages": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qDataPages": [ { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qState": "L", "qIsEmpty": true, "qIsTotalCell": true, "qIsOtherCell": true, "qFrequency": "value", "qHighlightRanges": { "qRanges": [ { "qCharPos": 123, "qCharCount": 123 } ] }, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] }, "qAttrDims": { "qValues": [ { "qText": "value", "qElemNo": 123 } ] }, "qIsNull": true, "qMiniChart": { "qMatrix": [ [ { "qText": "value", "qNum": 123, "qElemNumber": 123, "qAttrExps": { "qValues": [ { "qText": "value", "qNum": 123 } ] } } ] ], "qMin": 123, "qMax": 123, "qError": { "qErrorCode": 123, "qContext": "value", "qExtendedMessage": "value" } }, "qInExtRow": true } ] ], "qTails": [ { "qUp": 123, "qDown": 123 } ], "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qIsReduced": false } ] }}Returns the type of the object and the corresponding handle to the parent object in the hiearchy.
Response
- qReturnobject
qReturn properties
- qTypestring
The native type of the object.
- qHandleinteger
The handle used to connect to object.
- qGenericTypestring
The type of the object.
- qGenericIdstring
Object ID.
-
Errors
arrayGetParent()
const result = await genericObject.getParent()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetParent"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qReturn": { "qType": "value", "qHandle": 123, "qGenericType": "value", "qGenericId": "value" } }}Returns the identifier, the type and the properties of the object. Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given. If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead. If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.
Response
- qPropobject
qProp properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Errors
arrayGetProperties()
const result = await genericObject.getProperties()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetProperties"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qProp": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Returns the type of the object and the corresponding handle.
Response
- qReturnobject
qReturn properties
- qTypestring
The native type of the object.
- qHandleinteger
The handle used to connect to object.
- qGenericTypestring
The type of the object.
- qGenericIdstring
Object ID.
-
Errors
arrayGetSnapshotObject()
const result = await genericObject.getSnapshotObject()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "GetSnapshotObject"}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qReturn": { "qType": "value", "qHandle": 123, "qGenericType": "value", "qGenericId": "value" } }}Locks the selected values of a generic object.
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qListObjectDef .
- qColIndicesarray of integers
Dimension numbers or dimension indexes where the lock should apply. Dimension numbers/indexes start from 0. If this parameter is not set, the selected values in all dimensions are locked.
Response
objectErrors
arrayLock(qPath, qColIndices?)
const result = await genericObject.lock("value", [ 123])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "Lock", "params": { "qPath": "value", "qColIndices": [ 123 ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Makes multiple range selections in measures.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qRangesarray of objectsRequired
Ranges of selections.
qRanges properties
- qRangesarray of objects
qRanges properties
- qRangeobject
qRange properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qMeasureIxinteger
Number of the measure to select. Numbering starts from 0.
-
- qColumnsToSelectarray of integers
-
- qOrModeboolean
Applies to hypercubes with multiple measures. If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected. If set to false, it means that all measures must be in the range of selections for the group of measures to be selected. The default value is false.
- qDeselectOnlyOneSelectedboolean
Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field. The default value is false.
Response
- qSuccessboolean
Errors
arrayMultiRangeSelectHyperCubeValues(qPath, qRanges, qOrMode?, qDeselectOnlyOneSelected?)
const result = await genericObject.multiRangeSelectHyperCubeValues("value", [ { "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123 } ], "qColumnsToSelect": [ 123 ] }], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "MultiRangeSelectHyperCubeValues", "params": { "qPath": "value", "qRanges": [ { "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123 } ], "qColumnsToSelect": [ 123 ] } ], "qOrMode": true, "qDeselectOnlyOneSelected": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Parameters
- qPathstringRequired
- qRangesarray of objectsRequired
qRanges properties
- qRangesarray of objects
An array of Ranges.
qRanges properties
- qRangeobject
qRange properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qMeasureIxinteger
Number of the measure to select. Numbering starts from 0.
- qDimensionIxinteger
Number of the dimension to select measure from. Numbering starts from 0.
-
-
- qOrModeboolean
- qDeselectOnlyOneSelectedboolean
Response
- qSuccessboolean
Errors
arrayMultiRangeSelectTreeDataValues(qPath, qRanges, qOrMode?, qDeselectOnlyOneSelected?)
const result = await genericObject.multiRangeSelectTreeDataValues("value", [ { "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123, "qDimensionIx": 123 } ] }], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "MultiRangeSelectTreeDataValues", "params": { "qPath": "value", "qRanges": [ { "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123, "qDimensionIx": 123 } ] } ], "qOrMode": true, "qDeselectOnlyOneSelected": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Publishes a generic object.
Response
objectErrors
arrayPublish()
const result = await genericObject.publish()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "Publish"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}GenericObject RangeSelectHyperCubeValues
(qPath, qRanges, qColumnsToSelect?, qOrMode?, qDeselectOnlyOneSelected?)Makes range selections in measures.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qRangesarray of objectsRequired
Ranges of selections.
qRanges properties
- qRangeobject
qRange properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qMeasureIxinteger
Number of the measure to select. Numbering starts from 0.
-
- qColumnsToSelectarray of integers
Indicates which dimensions to select. The dimensions numbering starts at 0 (first dimension is 0). If the array is empty, all dimensions are selected.
- qOrModeboolean
Applies to hypercubes with multiple measures. If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected. If set to false, it means that all measures must be in the range of selections for the group of measures to be selected. The default value is false.
- qDeselectOnlyOneSelectedboolean
Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field. The default value is false.
Response
- qSuccessboolean
Errors
arrayRangeSelectHyperCubeValues(qPath, qRanges, qColumnsToSelect?, qOrMode?, qDeselectOnlyOneSelected?)
const result = await genericObject.rangeSelectHyperCubeValues("value", [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123 }], [ 123], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "RangeSelectHyperCubeValues", "params": { "qPath": "value", "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qMeasureIx": 123 } ], "qColumnsToSelect": [ 123 ], "qOrMode": true, "qDeselectOnlyOneSelected": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}You can use the RemoveGroup method with any object that contains an object grouping definition. This method allows you to remove a group of objects directly. This action only removes the group, not any of its members.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example /qNxGroupDef .
- qGroupIdstringRequired
Name of the group to be removed. May not be an empty string.
Response
objectErrors
arrayRemoveGroup(qPath, qGroupId)
const result = await genericObject.removeGroup("value", "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "RemoveGroup", "params": { "qPath": "value", "qGroupId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}You can use the RemoveGroupMembers method with any object that contains an object grouping definition. This method allows you to remove one or more members from an existing group of objects directly.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example /qNxGroupDef .
- qMembersarray of stringsRequired
Array of IDs for the objects and/or subgroups to remove from the group.
- qTargetGroupIdstring
Name of the group the Members will be removed from (if not the called object).
Response
objectErrors
arrayRemoveGroupMembers(qPath, qMembers, qTargetGroupId?)
const result = await genericObject.removeGroupMembers("value", [ "value"], "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "RemoveGroupMembers", "params": { "qPath": "value", "qMembers": [ "value" ], "qTargetGroupId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}ResetMadeSelections()
const result = await genericObject.resetMadeSelections()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "ResetMadeSelections"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Searches for a string in a list object.
Parameters
- qPathstringRequired
Path to the definition of the list object. For example, /qListObjectDef .
- qMatchstringRequired
Search string. Wild card characters are allowed. The search is not case sensitive. Examples:
P*U*: retrieves only values that start with P and contain UP U S: retrieves values that start with P, U or S
Response
- qSuccessboolean
Errors
arraySearchListObjectFor(qPath, qMatch)
const result = await genericObject.searchListObjectFor("value", "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SearchListObjectFor", "params": { "qPath": "value", "qMatch": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}GenericObject SelectHyperCubeCells
(qPath, qRowIndices, qColIndices, qSoftLock?, qDeselectOnlyOneSelected?)Makes selections in multiple dimensions and measures.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qRowIndicesarray of integersRequired
Array of row indexes to select, starting from 0. If the array is empty [ ] , all rows are selected.
- qColIndicesarray of integersRequired
Indexes of the columns to select, starting from 0. A column corresponds to a dimension in the order they are added to the hypercube. If a column is hidden it is ignored, qColIndex n refers to the n:th visible column (starting from zero). Example: If the hypercube has two dimensions:
- [0] selects the first column (i.e the first dimension).
- [1] selects the second column (i.e the second dimension).
If the array is empty [ ] , all columns are selected.
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected.
- qDeselectOnlyOneSelectedboolean
Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectHyperCubeCells(qPath, qRowIndices, qColIndices, qSoftLock?, qDeselectOnlyOneSelected?)
const result = await genericObject.selectHyperCubeCells("value", [ 123], [ 123], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectHyperCubeCells", "params": { "qPath": "value", "qRowIndices": [ 123 ], "qColIndices": [ 123 ], "qSoftLock": true, "qDeselectOnlyOneSelected": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}The following is returned in the output:
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qHyperCubeDef .
- qRangesarray of objectsRequired
Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals. If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.
qRanges properties
- qRangeobject
qRange properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qDimIxinteger
Dimension index.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectHyperCubeContinuousRange(qPath, qRanges, qSoftLock?)
const result = await genericObject.selectHyperCubeContinuousRange("value", [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qDimIx": 123 }], true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectHyperCubeContinuousRange", "params": { "qPath": "value", "qRanges": [ { "qRange": { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }, "qDimIx": 123 } ], "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Selects some values in one dimension. The values are identified by their element numbers.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qDimNointegerRequired
Dimension number or index to select. Dimension numbers/index start from 0.
- qValuesarray of integersRequired
Element numbers of the field to select. You can select multiple elements; the separator is the comma.
- qToggleModebooleanRequired
Set to true to toggle.
Response
- qSuccessboolean
Errors
arraySelectHyperCubeValues(qPath, qDimNo, qValues, qToggleMode)
const result = await genericObject.selectHyperCubeValues("value", 123, [ 123], true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectHyperCubeValues", "params": { "qPath": "value", "qDimNo": 123, "qValues": [ 123 ], "qToggleMode": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Selects all values of a field.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectAll(qPath, qSoftLock?)
const result = await genericObject.selectListObjectAll("value", true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectAll", "params": { "qPath": "value", "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Selects all alternative values in a specific field.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectAlternative(qPath, qSoftLock?)
const result = await genericObject.selectListObjectAlternative("value", true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectAlternative", "params": { "qPath": "value", "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}The following is returned in the output:
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qHyperCubeDef .
- qRangesarray of objectsRequired
Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals. If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.
qRanges properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectContinuousRange(qPath, qRanges, qSoftLock?)
const result = await genericObject.selectListObjectContinuousRange("value", [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true }], true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectContinuousRange", "params": { "qPath": "value", "qRanges": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Inverts the current selections in a specific field.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectExcluded(qPath, qSoftLock?)
const result = await genericObject.selectListObjectExcluded("value", true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectExcluded", "params": { "qPath": "value", "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Selects all possible values of a list object.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectPossible(qPath, qSoftLock?)
const result = await genericObject.selectListObjectPossible("value", true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectPossible", "params": { "qPath": "value", "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Makes single selections in dimensions.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qListObjectDef .
- qValuesarray of integersRequired
Element numbers to select. You can select multiple values; the separator is the comma.
- qToggleModebooleanRequired
Set to true to toggle.
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectListObjectValues(qPath, qValues, qToggleMode, qSoftLock?)
const result = await genericObject.selectListObjectValues("value", [ 123], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectListObjectValues", "params": { "qPath": "value", "qValues": [ 123 ], "qToggleMode": true, "qSoftLock": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}Pivot table
Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.
Stacked table
Makes selections in the left dimension cells of a stacked table or in the data matrix.
The member Change returns the handles of the objects that are updated following the selections. qSuccess is set to true if the selections are successful and is set to false in the following cases:
- The object contains some invalid fields (fields that are not in the data model).
- The selection applies to a locked field.
- A range selection is performed and the parameter OneAndOnlyOne is set to true in the definition of the object.
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qHyperCubeDef .
- qSelectionsarray of objectsRequired
Information about the selections to perform.
qSelections properties
- qTypestring
Can be one of: "D""T""L"
- qColinteger
Column index to select. Indexing starts from 0. If the cell's type is:
- D, the index is based on the data matrix.
- T, the index is based on the data matrix.
- L, the index is based on the left dimensions indexes.
- qRowinteger
Row index to select. Indexing starts from 0. If the cell's type is:
- D, the index is based on the data matrix.
- T, the index is based on the top dimensions indexes.
- L, the index is based on the data matrix.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected.
- qDeselectOnlyOneSelectedboolean
Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field. The default value is false.
Response
- qSuccessboolean
Errors
arraySelectPivotCells(qPath, qSelections, qSoftLock?, qDeselectOnlyOneSelected?)
const result = await genericObject.selectPivotCells("value", [ { "qType": "D", "qCol": 123, "qRow": 123 }], true, true)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SelectPivotCells", "params": { "qPath": "value", "qSelections": [ { "qType": "D", "qCol": 123, "qRow": 123 } ], "qSoftLock": true, "qDeselectOnlyOneSelected": true }}Response
{ "jsonrpc": "2.0", "id": 1, "result": { "qSuccess": true }}You can use the SetActiveField method with any object that contains a cyclic group as a dimension. This method allows you to jump to a specific field in a cyclic dimension. If NewIndex is out-of-bounds of the dimension's fields then no action is taken. A hypercube will avoid field collisions with its other dimensions when setting the active field in this manner. If there are any collisions then no action is performed.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qDimNointegerRequired
Dimension number or index starting from 0. The default value is 0.
- qNewIndexintegerRequired
Index of the field to jump to.
Response
objectErrors
arraySetActiveField(qPath, qDimNo, qNewIndex)
const result = await genericObject.setActiveField("value", 123, 123)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SetActiveField", "params": { "qPath": "value", "qDimNo": 123, "qNewIndex": 123 }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Sets the order of the children in a generic object.
Parameters
- qIdsarray of stringsRequired
List of the children identifiers.
Response
objectErrors
arraySetChildArrayOrder(qIds)
const result = await genericObject.setChildArrayOrder([ "value"])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SetChildArrayOrder", "params": { "qIds": [ "value" ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Sets the properties of:
- A generic object.
- The children of the generic object.
- The bookmarks/embedded snapshots of the generic object.
Parameters
- qPropEntryobjectRequired
Information about the generic object entry.
qPropEntry properties
- qPropertyobject
qProperty properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
- qChildrenarray of undefineds
Information about the children of the generic object.
- qEmbeddedSnapshotRefobject
qEmbeddedSnapshotRef properties
- qPropertiesobject
qProperties properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qIncludeVariablesbooleanExperimental
If true all variables will be stored in the bookmark.
- qDistinctValuesbooleanExperimental
If true all selected values will be stored distinct, i.e. searchstrings will not be kept.
-
- qBookmarkobject
qBookmark properties
- qStateDataarray of objects
List of selections for each state.
qStateData properties
- qStateNamestring
Name of the alternate state. Default is current selections: $
- qFieldItemsarray of objects
List of the selections.
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
-
- qUtcModifyTimenumber
Time when the bookmark was created.
- qVariableItemsarray of objects
List of the variables in the app at the time the bookmark was created.
qVariableItems properties
- qNamestring
Name of the variable.
- qValueobject
qValue properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qDefinitionstring
The Reporting mode definition of the variable.
-
- qPatchesarray of objects
Softpatches to be applied with this bookmark.
qPatches properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qPatchesarray of objects
Array with patches.
qPatches properties
- qOpstring
Can be one of: "add""remove""replace"
- qPathstring
Path to the property to add, remove or replace.
- qValuestring
This parameter is not used in a remove operation. Corresponds to the value of the property to add or to the new value of the property to update. Examples: "false", "2", ""New title""
-
- qChildrenarray of undefineds
Array with child objects and their patches.
-
- qCyclicGroupStatesarray of objects
Information about cyclic groups by zero-based index. This field is unused.
qCyclicGroupStates properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qActiveFieldinteger
Active field of the cyclic group, identified by a zero-based index.
-
- qGroupStatesarray of objectsExperimental
Information about cyclic groups indexed by field definition.
qGroupStates properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qActiveFieldDefstring
String defining the active field.
-
-
- qClassicBookmarkobject
qClassicBookmark properties
- qIdstring
- qNamestring
- qUtcModifyTimenumber
- qUtcRecallTimenumber
- qRecallCountinteger
- qApplyAdditiveboolean
- qFieldItemsarray of objects
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
- qVariableItemsarray of objects
qVariableItems properties
- qNamestring
Name of the variable.
- qValueobject
qValue properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qDefinitionstring
The Reporting mode definition of the variable.
-
- qSheetIdstring
- qObjectsarray of objects
qObjects properties
- qIdstring
- qActiveboolean
- qShowModeinteger
- qScrollPosobject
qScrollPos properties
- qUsePositionboolean
- qPosobject
qPos properties
- qxinteger
x-coordinate in pixels. The origin is the top left of the screen.
- qyinteger
y-coordinate in pixels. The origin is the top left of the screen.
-
-
-
- qApplyLayoutStateboolean
- qShowPopupInfoboolean
- qInfoTextstring
- qOwnerstring
- qGroupsarray of objects
qGroups properties
- qIdstring
- qCyclePosinteger
-
- qShowobject
qShow properties
- qAlwaysboolean
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
-
- qApplyInputFieldValuesboolean
- qInputFieldItemsarray of objects
qInputFieldItems properties
- qFieldNamestring
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qPackedHashKeysarray of integers
-
- qObjectsLayoutarray of objects
qObjectsLayout properties
- qIdstring
- qActiveboolean
- qShowModeinteger
- qScrollPosobject
qScrollPos properties
- qUsePositionboolean
- qPosobject
qPos properties
- qxinteger
x-coordinate in pixels. The origin is the top left of the screen.
- qyinteger
y-coordinate in pixels. The origin is the top left of the screen.
-
-
- qExpansionInfoarray of objects
qExpansionInfo properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qLeftCollapsedboolean
- qTopCollapsedboolean
- qSortDataarray of objects
qSortData properties
- qNamestring
- qReversedboolean
-
- qDimensionGroupPosarray of objects
qDimensionGroupPos properties
- qGroupNamestring
- qCurrentItemNamestring
-
- qExpressionGroupPosarray of objects
qExpressionGroupPos properties
- qGroupNamestring
- qCurrentItemNamestring
-
- qUseGraphModeboolean
- qGraphModestring
Can be one of: "GRAPH_MODE_BAR""GRAPH_MODE_PIE""GRAPH_MODE_PIVOTTABLE""GRAPH_MODE_SCATTER""GRAPH_MODE_LINE""GRAPH_MODE_STRAIGHTTABLE""GRAPH_MODE_COMBO""GRAPH_MODE_RADAR""GRAPH_MODE_GAUGE""GRAPH_MODE_GRID""GRAPH_MODE_BLOCK""GRAPH_MODE_FUNNEL""GRAPH_MODE_MEKKO""GRAPH_MODE_LAST"
- qActiveContainerChildObjectIdstring
- qExtendedPivotStateobject
qExtendedPivotState properties
- qExpressionPositioninteger
- qNumberOfLeftDimensionsinteger
- qDimensionNamesarray of strings
- qEnableConditionsarray of strings
-
-
- qIncludeSelectionStateboolean
- qIncludeScrollPositionboolean
- qAlternateStateDataarray of objects
qAlternateStateData properties
- qStateNamestring
Name of the alternate state. Default is current selections: $
- qFieldItemsarray of objects
List of the selections.
qFieldItems properties
- qDefobject
qDef properties
- qNamestring
Name of the field.
- qTypestring
Can be one of: "NOT_PRESENT""PRESENT""IS_CYCLIC_GROUP""IS_DRILL_GROUP""IS_VAR""IS_EXPR""IS_IMPLICIT""IS_DETAIL"
-
- qLockedboolean
Indicates if the field is locked. Default is false.
- qSelectInfoobject
qSelectInfo properties
- qTextSearchstring
Text search string. Everything that matches the text is selected. This parameter is optional.
- qRangeLonumber
Lower value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qRangeHinumber
Highest value of the search range. This parameter is used when performing range selections or text searches in dimensions. Default is Null.
- qNumberFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumberFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRangeInfoarray of objects
This parameter is used when performing range selections or text searches in measures. Gives information about the range of selections.
qRangeInfo properties
- qRangeLonumber
Lowest value in the range.
- qRangeHinumber
Highest value in the range.
- qMeasurestring
Label of the measure.
-
- qSoftLockboolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false.
- qContinuousRangeInfoarray of objects
List of information about ranges for selections.
qContinuousRangeInfo properties
- qMinnumber
Lowest value in the range
- qMaxnumber
Highest value in the range
- qMinInclEqboolean
If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.
- qMaxInclEqboolean
If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.
-
- qSelectFieldSearchboolean
This parameter is true if the TextSearch is a result of a Select Field operation.
-
- qValuesarray of objects
qValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qExcludedValuesarray of objects
List of excluded values. Either the list of selected values or the list of excluded values is displayed.
qExcludedValues properties
- qTextstring
Text related to the field value. This parameter is optional.
- qIsNumericboolean
Is set to true if the value is a numeric. This parameter is optional. Default is false.
- qNumbernumber
Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.
-
- qAndModeboolean
If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.
- qOneAndOnlyOneboolean
If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.
- qValuesCountinteger
Count of selected values. Indicates if the Values field is loaded.
- qExcludedValuesCountinteger
Count of excluded values. Indicates if the ExcludedValues field is loaded.
-
-
- qForAnnotationsboolean
- qIncludeAllVariablesboolean
-
- qClassicMetadataobject
qClassicMetadata properties
- qSharedboolean
- qUtcModifyTimenumber
- qSheetIdstring
- qTemporaryboolean
- qRestrictedAccessboolean
- qAccessListarray of strings
- qPersonalEditionHash_OBSOLETEstring
- qHiddenboolean
- qLinkedToarray of strings
-
-
-
Response
objectErrors
arraySetFullPropertyTree(qPropEntry)
const result = await genericObject.setFullPropertyTree({ "qProperty": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } }, "qChildren": [], "qEmbeddedSnapshotRef": { "qProperties": { "qInfo": { "qId": "value", "qType": "value" }, "qMetaDef": {}, "qIncludeVariables": false, "qDistinctValues": false }, "qBookmark": { "qStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qUtcModifyTime": 123, "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qPatches": [ { "qInfo": { "qId": "value", "qType": "value" }, "qPatches": [ { "qOp": "add", "qPath": "value", "qValue": "value" } ], "qChildren": [] } ], "qCyclicGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveField": 123 } ], "qGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveFieldDef": "value" } ] }, "qClassicBookmark": { "qId": "value", "qName": "value", "qUtcModifyTime": 123, "qUtcRecallTime": 123, "qRecallCount": 123, "qApplyAdditive": true, "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ], "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qSheetId": "value", "qObjects": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } } } ], "qApplyLayoutState": false, "qShowPopupInfo": false, "qInfoText": "value", "qOwner": "value", "qGroups": [ { "qId": "value", "qCyclePos": 123 } ], "qShow": { "qAlways": true, "qExpression": { "qv": "value" } }, "qApplyInputFieldValues": true, "qInputFieldItems": [ { "qFieldName": "value", "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qPackedHashKeys": [ 123 ] } ], "qObjectsLayout": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } }, "qExpansionInfo": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qLeftCollapsed": true, "qTopCollapsed": true, "qSortData": [ { "qName": "value", "qReversed": true } ], "qDimensionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qExpressionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qUseGraphMode": true, "qGraphMode": "GRAPH_MODE_BAR", "qActiveContainerChildObjectId": "value", "qExtendedPivotState": { "qExpressionPosition": 123, "qNumberOfLeftDimensions": 123, "qDimensionNames": [ "value" ], "qEnableConditions": [ "value" ] } } ], "qIncludeSelectionState": true, "qIncludeScrollPosition": true, "qAlternateStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qForAnnotations": true, "qIncludeAllVariables": false }, "qClassicMetadata": { "qShared": true, "qUtcModifyTime": 123, "qSheetId": "value", "qTemporary": true, "qRestrictedAccess": true, "qAccessList": [ "value" ], "qPersonalEditionHash_OBSOLETE": "value", "qHidden": false, "qLinkedTo": [ "value" ] } }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SetFullPropertyTree", "params": { "qPropEntry": { "qProperty": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } }, "qChildren": [], "qEmbeddedSnapshotRef": { "qProperties": { "qInfo": { "qId": "value", "qType": "value" }, "qMetaDef": {}, "qIncludeVariables": false, "qDistinctValues": false }, "qBookmark": { "qStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qUtcModifyTime": 123, "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qPatches": [ { "qInfo": { "qId": "value", "qType": "value" }, "qPatches": [ { "qOp": "add", "qPath": "value", "qValue": "value" } ], "qChildren": [] } ], "qCyclicGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveField": 123 } ], "qGroupStates": [ { "qInfo": { "qId": "value", "qType": "value" }, "qActiveFieldDef": "value" } ] }, "qClassicBookmark": { "qId": "value", "qName": "value", "qUtcModifyTime": 123, "qUtcRecallTime": 123, "qRecallCount": 123, "qApplyAdditive": true, "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ], "qVariableItems": [ { "qName": "value", "qValue": { "qText": "value", "qIsNumeric": true, "qNumber": 123 }, "qDefinition": "value" } ], "qSheetId": "value", "qObjects": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } } } ], "qApplyLayoutState": false, "qShowPopupInfo": false, "qInfoText": "value", "qOwner": "value", "qGroups": [ { "qId": "value", "qCyclePos": 123 } ], "qShow": { "qAlways": true, "qExpression": { "qv": "value" } }, "qApplyInputFieldValues": true, "qInputFieldItems": [ { "qFieldName": "value", "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qPackedHashKeys": [ 123 ] } ], "qObjectsLayout": [ { "qId": "value", "qActive": true, "qShowMode": 123, "qScrollPos": { "qUsePosition": true, "qPos": { "qx": 123, "qy": 123 } }, "qExpansionInfo": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qLeftCollapsed": true, "qTopCollapsed": true, "qSortData": [ { "qName": "value", "qReversed": true } ], "qDimensionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qExpressionGroupPos": [ { "qGroupName": "value", "qCurrentItemName": "value" } ], "qUseGraphMode": true, "qGraphMode": "GRAPH_MODE_BAR", "qActiveContainerChildObjectId": "value", "qExtendedPivotState": { "qExpressionPosition": 123, "qNumberOfLeftDimensions": 123, "qDimensionNames": [ "value" ], "qEnableConditions": [ "value" ] } } ], "qIncludeSelectionState": true, "qIncludeScrollPosition": true, "qAlternateStateData": [ { "qStateName": "value", "qFieldItems": [ { "qDef": { "qName": "value", "qType": "NOT_PRESENT" }, "qLocked": true, "qSelectInfo": { "qTextSearch": "value", "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qNumberFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRangeInfo": [ { "qRangeLo": -1e+300, "qRangeHi": -1e+300, "qMeasure": "value" } ], "qSoftLock": false, "qContinuousRangeInfo": [ { "qMin": 123, "qMax": 123, "qMinInclEq": true, "qMaxInclEq": true } ], "qSelectFieldSearch": false }, "qValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qExcludedValues": [ { "qText": "value", "qIsNumeric": true, "qNumber": 123 } ], "qAndMode": true, "qOneAndOnlyOne": true, "qValuesCount": -1, "qExcludedValuesCount": -1 } ] } ], "qForAnnotations": true, "qIncludeAllVariables": false }, "qClassicMetadata": { "qShared": true, "qUtcModifyTime": 123, "qSheetId": "value", "qTemporary": true, "qRestrictedAccess": true, "qAccessList": [ "value" ], "qPersonalEditionHash_OBSOLETE": "value", "qHidden": false, "qLinkedTo": [ "value" ] } } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}You can use the SetGroupLabel method with any object that contains an object grouping definition. This method allows you to change the label of an existing group of objects directly.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example /qNxGroupDef .
- qNewLabelstringRequired
New label for the group. A label starting with an '=' will be evaluated as an expression.
- qTargetGroupIdstring
Id of the group whose label will be set (if not the called object).
Response
objectErrors
arraySetGroupLabel(qPath, qNewLabel, qTargetGroupId?)
const result = await genericObject.setGroupLabel("value", "value", "value")Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SetGroupLabel", "params": { "qPath": "value", "qNewLabel": "value", "qTargetGroupId": "value" }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Sets some properties for a generic object.
Parameters
- qPropobjectRequired
Information about the generic object.
qProp properties
- qInfoobject
qInfo properties
- qIdstring
Identifier of the object. If the chosen identifier is already in use, the engine automatically sets another one. If an identifier is not set, the engine automatically sets one. This parameter is optional.
- qTypestring
Type of the object. This parameter is mandatory.
-
- qExtendsIdstring
Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to). If you do not want to link your object, set this parameter to an empty string.
- qMetaDefobject
Used to collect meta data.
Properties
Semantic type with an empty structure.
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qAppObjectListDefobject
Defines the list of objects in an app.
An app object is a generic object created at app level.qAppObjectListDef properties
- qTypestring
Type of the app list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qBookmarkListDefobject
Defines the list of bookmarks.
qBookmarkListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
- qIncludePatchesboolean
Include the bookmark patches. Patches can be very large and may make the list result unmanageable.
-
- qChildListDefobject
Defines the list of children of a generic object. What is defined in ChildListDef has an impact on what the GetLayout method returns. See Example for more information.
qChildListDef properties
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qDimensionListDefobject
Defines the lists of dimensions.
qDimensionListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qEmbeddedSnapshotDefobject
Defines the embedded snapshot in a generic object.
Properties
"EmbeddedSnapshotDef": {}
- qExtensionListDefobject
Obsolete, use qrs API's to fetch extensions.
- qFieldListDefobject
Defines the fields to show.
qFieldListDef properties
- qShowSystemboolean
Shows the system tables if set to true. Default is false.
- qShowHiddenboolean
Shows the hidden fields if set to true. Default is false.
- qShowSemanticboolean
Show the semantic fields if set to true. Default is false.
- qShowSrcTablesboolean
Shows the tables and fields present in the data model viewer if set to true. Default is false.
- qShowDefinitionOnlyboolean
Shows the fields defined on the fly if set to true. Default is false.
- qShowDerivedFieldsboolean
Shows the fields and derived fields if set to true. Default is false.
- qShowImplicitboolean
Shows the Direct Discovery measure fields if set to true. Default is false.
-
- qHyperCubeDefobject
Defines the properties of a hypercube. For more information about the definition of a hypercube, see Generic object.
qHyperCubeDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qIncludeElemValueboolean
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowTotalboolean
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
-
- qMeasuresarray of objects
Array of measures.
qMeasures properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qInterColumnSortOrderarray of integers
Defines the sort order of the columns in the hypercube. Column numbers are separated by a comma. Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2. The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array. The index of the pseudo-dimension (if any) is -1. Pseudo dimensions only apply for pivot tables with more than one measure. A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it. Stacked pivot tables can only contain one measure.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qInitialDataFetcharray of objects
Initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qReductionModestring
Can be one of: "N""D1""S""C""ST"
- qModestring
Can be one of: "S""P""K""T""D"
- qPseudoDimPosinteger
- qNoOfLeftDimsinteger
Number of left dimensions. Default value is -1. In that case, all dimensions are left dimensions. Hidden dimensions (e.g. due to unfulfilled calc condition on dimension level) is still counted in this context. The index related to each left dimension depends on the position of the pseudo dimension (if any). For example, a pivot table with:
- Four dimensions in the following order: Country, City, Product and Category.
- One pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder ) qInterColumnSortOrder is (0,-1,1,2,3).
- Three left dimensions ( qNoOfLeftDims is set to 3).
implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the pseudo dimension.
- The index 2 corresponds to the left dimension City.
- Product and Category are top dimensions.
Another example:
- Four dimensions in the following order: Country, City, Product and Category.
- Three left dimensions ( qNoOfLeftDims is set to 3).
- One pseudo dimension.
- The property qInterColumnSortOrder is left empty.
Implies that:
- The index 0 corresponds to the left dimension Country.
- The index 1 corresponds to the left dimension City.
- The index 2 corresponds to the left dimension Product.
- Category is a top dimension.
- The pseudo dimension is a top dimension.
- qAlwaysFullyExpandedboolean
If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells. The default value is false.
- qMaxStackedCellsinteger
Maximum number of cells for an initial data fetch (set in qInitialDataFetch ) when in stacked mode ( qMode is K). The default value is 5000.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qShowTotalsAboveboolean
If set to true, the total (if any) is shown on the first row. The default value is false.
- qIndentModeboolean
This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row. The default value is false.
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qSortbyYValueinteger
To enable the sorting by ascending or descending order in the values of a measure. This property applies to pivot tables and stacked pivot tables. In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qColumnOrderarray of integers
The order of the columns.
- qExpansionStatearray of objectsExperimental
Expansion state per dimension for pivot mode ( qMode is P).
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qDynamicScriptarray of stringsExperimental
Hypercube Modifier Dynamic script string
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
- qSuppressMeasureTotalsboolean
If set to true, suppress any measure grand totals, ignoring any AggrFunc.
-
- qLayoutExcludeobject
Contains JSON to be excluded from validation.
- qListObjectDefobject
Defines the properties of a list object. For more information about the definition of a list object, see Generic object.
qListObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qAutoSortByStateobject
qAutoSortByState properties
- qDisplayNumberOfRowsinteger
This parameter applies to list objects. If the total number of values in the list object is greater than the value set in qDisplayNumberOfRows , the selected lines are promoted at the top of the list object. If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.
-
- qFrequencyModestring
Can be one of: "N""V""P""R"
- qShowAlternativesboolean
If set to true, alternative values are allowed in qData . If set to false, no alternative values are displayed in qData . Values are excluded instead. The default value is false. Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values. This parameter is optional.
- qInitialDataFetcharray of objects
Fetches an initial data set.
qInitialDataFetch properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qExpressionsarray of objects
Lists the expressions in the list object. This parameter is optional.
qExpressions properties
- qExprstring
Value of the expression.
- qLibraryIdstring
Refers to an expression stored in the library.
-
- qDirectQuerySimplifiedViewbooleanExperimental
If set to true, reduces the set of states returned. Supported for Direct Query mode only. Default is false.
-
- qMeasureListDefobject
Defines the list of measures.
qMeasureListDef properties
- qTypestring
Type of the list.
- qDataobject
Contains dynamic JSON data specified by the client.
-
- qMediaListDefobject
Defines the list of media files.
This struct is deprecated.Properties
"qMediaListDef": {} qMediaListDef has an empty structure. No properties need to be set.
- qNxLibraryDimensionDefobject
qNxLibraryDimensionDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of dimension names.
- qFieldLabelsarray of strings
Array of dimension labels.
- qLabelExpressionstring
- qAliasstring
Alias of the dimension.
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qNxLibraryMeasureDefobject
qNxLibraryMeasureDef properties
- qLabelstring
Label of the measure.
- qDefstring
Definition of the measure.
- qGroupingstring
Can be one of: "N""H""C"
- qExpressionsarray of strings
Array of expressions.
- qActiveExpressioninteger
Index to the active expression in a measure.
- qLabelExpressionstring
Optional expression used for dynamic label.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qScriptGeneratedbooleanDeprecated
- qOriginstring
Can be one of: "PROGRAM""SCRIPT""DATA_PRODUCT"
-
- qSelectionObjectDefobject
To display the current selections. Can be added to any generic object but is particularly meaningful when using session objects to monitor an app.
Properties
"qSelectionObjectDef": {}
qSelectionObjectDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
-
- qStaticContentUrlDefobjectIn addition, this structure can contain dynamic properties.
qStaticContentUrlDef properties
- qUrlstring
Relative path of the thumbnail.
-
- qStringExpressionobject
Properties
Abbreviated syntax: "qStringExpression":"=<expression>" Extended object syntax: "qStringExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string
The "=" sign in the string expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.A string expression is not evaluated, if the expression is surrounded by simple quotes.The result of the evaluation of the expression can be of any type, as it is returned as a JSON (quoted) string.qStringExpression properties
- qExprstring
- qTreeDataDefobject
Defines the properties of a TreeData object. For more information about the definition of a TreeData object, see Generic object.
qTreeDataDef properties
- qStateNamestring
Name of the alternate state. Default is current selections $ .
- qDimensionsarray of objects
Array of dimensions.
qDimensions properties
- qLibraryIdstring
Refers to a dimension stored in the library.
- qDefobject
qDef properties
- qGroupingstring
Can be one of: "N""H""C"
- qFieldDefsarray of strings
Array of field names. When creating a grouped dimension, more than one field name is defined. This parameter is optional.
- qFieldLabelsarray of strings
Array of field labels. This parameter is optional.
- qSortCriteriasarray of objects
Defines the sorting criteria in the field. Default is to sort by alphabetical order, ascending. This parameter is optional.
qSortCriterias properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qNumberPresentationsarray of objects
Defines the format of the value. This parameter is optional.
qNumberPresentations properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
-
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveFieldinteger
Index of the active field in a cyclic dimension. This parameter is optional. The default value is 0. This parameter is used in case of cyclic dimensions ( qGrouping is C).
- qLabelExpressionstring
Label expression. This parameter is optional.
- qAliasstring
Alias of the dimension.
-
- qValueExprsarray of objects
List of measures.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qNullSuppressionboolean
If set to true, no null values are returned.
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qShowAllboolean
If set to true, all dimension values are shown.
- qOtherLabelobject
qOtherLabel properties
- qvstring
Expression evaluated to string.
-
- qTotalLabelobject
qTotalLabel properties
- qvstring
Expression evaluated to string.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
-
- qInterColumnSortOrderarray of integers
Defines the order of the dimension levels/columns in the TreeData object. Column numbers are separated by a comma. Example: [1,0,2] means that the first level in the tree structure is dimension 1, followed by dimension 0 and dimension 2. The default sort order is the order in which the dimensions and measures have been defined in the TreeDataDef.
- qSuppressZeroboolean
Removes zero values.
- qSuppressMissingboolean
Removes missing values.
- qOpenFullyExpandedboolean
If this property is set to true, the cells are opened expanded. The default value is false.
- qPopulateMissingboolean
If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string. The default value is false.
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTitleobject
qTitle properties
- qvstring
Expression evaluated to string.
-
- qInitialDataFetcharray of objects
Initial data set. This property is optional.
qInitialDataFetch properties
- qMaxNbrOfNodesinteger
Maximum number of nodes in the tree. If this limit is exceeded, no nodes are returned. All nodes are counted.
- qTreeNodesarray of objects
Defines areas of the tree to be fetched. Areas must be defined left to right.
qTreeNodes properties
- qAreaobject
qArea properties
- qLeftinteger
Position from the left. Corresponds to the first column.
- qTopinteger
Position from the top. Corresponds to the first row.
- qWidthinteger
Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
- qHeightinteger
Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef ).
-
- qAllValuesboolean
When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.
-
- qTreeLevelsobject
qTreeLevels properties
- qLeftinteger
The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.
- qDepthinteger
Number of dimensions to include in the tree.
-
-
- qExpansionStatearray of objectsExperimental
Expansion state per dimension.
qExpansionState properties
- qExcludeListboolean
- qPosobject
qPos properties
- qDimNamestring
- qElemNoarray of integers
- qElemValuesarray of strings
-
-
- qValueExprsarray of objects
List of measures to calculate on the whole tree.
qValueExprs properties
- qLibraryIdstring
Refers to a measure stored in the library.
- qDefobject
qDef properties
- qLabelstring
Name of the measure. An empty string is returned as a default value. This parameter is optional.
- qDescriptionstring
Description of the measure. An empty string is returned as a default value. This parameter is optional.
- qTagsarray of strings
Name connected to the measure that is used for search purposes. A measure can have several tags. This parameter is optional.
- qGroupingstring
Can be one of: "N""H""C"
- qDefstring
Definition of the expression in the measure. Example: Sum (OrderTotal) This parameter is mandatory.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qRelativeboolean
If set to true, percentage values are returned instead of absolute numbers. Default value is false. This parameter is optional.
- qBrutalSumboolean
If set to true, the sum of rows total should be used rather than real expression total. This parameter is optional and applies to straight tables. Default value is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total .
- qAggrFuncstring
Flag indicating how the measure should be aggregated to create a grand total. "None" - No total calculation. "Expr" - Calculate total according to the measure expression. "" - Empty string is default and has same effect as "Expr". This parameter is optional.
- qAccumulateinteger
- 0 means no accumulation * 1 means full accumulation (each y-value accumulates all previous y-values of the expression) * ≥ 2 means accumulate as many steps as the qAccumulate value Default value is 0. This parameter is optional.
- qReverseSortboolean
If set to true, it inverts the sort criteria in the field.
- qActiveExpressioninteger
Index of the active expression in a cyclic measure. The indexing starts from 0. The default value is 0. This parameter is optional.
- qExpressionsarray of strings
Array of expressions. This parameter is used in case of cyclic measures ( qGrouping is C). List of the expressions in the cyclic group.
- qLabelExpressionstring
Label expression. This parameter is optional.
-
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qAttributeDimensionsarray of objects
List of attribute dimensions.
qAttributeDimensions properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qAttributeboolean
If set to true, this attribute will not affect the number of rows in the cube.
-
- qCalcCondobject
qCalcCond properties
- qvstring
Expression evaluated to dual.
-
- qCalcConditionobject
qCalcCondition properties
- qCondobject
qCond properties
- qvstring
Expression evaluated to dual.
-
- qMsgobject
qMsg properties
- qvstring
Expression evaluated to string.
-
-
- qTrendLinesarray of objectsExperimental
Specifies trendlines for this measure.
qTrendLines properties
- qTypestring
Can be one of: "AVERAGE""LINEAR""POLYNOMIAL2""POLYNOMIAL3""POLYNOMIAL4""EXPONENTIAL""POWER""LOG"
- qXColIxinteger
The column in the hypercube to be used as x axis. Can point to either a dimension (numeric or text) or a measure
- qCalcR2boolean
Set to true to calulatate the R2 score
- qContinuousXAxisstring
Can be one of: "Never""Possible""Time"
- qMultiDimModestring
Can be one of: "Multi""Sum"
-
- qMiniChartDefobject
qMiniChartDef properties
- qDefstring
Expression or field name.
- qLibraryIdstring
LibraryId for dimension.
- qSortByobject
qSortBy properties
- qSortByStateinteger
Sorts the field values according to their logical state (selected, optional, alternative or excluded).
- qSortByFrequencyinteger
Sorts the field values by frequency (number of occurrences in the field).
- qSortByNumericinteger
Sorts the field values by numeric value.
- qSortByAsciiinteger
Sorts the field by alphabetical order.
- qSortByLoadOrderinteger
Sorts the field values by the initial load order.
- qSortByExpressioninteger
Sorts the field by expression.
- qExpressionobject
qExpression properties
- qvstring
Expression evaluated to dual.
-
- qSortByGreynessinteger
-
- qOtherTotalSpecobject
qOtherTotalSpec properties
- qOtherModestring
Can be one of: "OTHER_OFF""OTHER_COUNTED""OTHER_ABS_LIMITED""OTHER_ABS_ACC_TARGET""OTHER_REL_LIMITED""OTHER_REL_ACC_TARGET"
- qOtherCountedobject
qOtherCounted properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitobject
qOtherLimit properties
- qvstring
Expression evaluated to dual.
-
- qOtherLimitModestring
Can be one of: "OTHER_GE_LIMIT""OTHER_LE_LIMIT""OTHER_GT_LIMIT""OTHER_LT_LIMIT"
- qSuppressOtherboolean
If set to true, the group Others is not displayed as a dimension value. The default value is false.
- qForceBadValueKeepingboolean
This parameter is used when qOtherMode is set to:
- OTHER_ABS_LIMITED
- OTHER_REL_LIMITED
- OTHER_ABS_ACC_TARGET OTHER_REL_ACC_TARGET
and when the dimension values include not numeric values. Set this parameter to true to include text values in the returned values. The default value is true.
- qApplyEvenWhenPossiblyWrongResultboolean
Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes. For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe. The default value is true.
- qGlobalOtherGroupingboolean
This parameter applies to inner dimensions. If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored. The default value is false.
- qOtherCollapseInnerDimensionsboolean
If set to true, it collapses the inner dimensions (if any) in the group Others . The default value is false.
- qOtherSortModestring
Can be one of: "OTHER_SORT_DEFAULT""OTHER_SORT_DESCENDING""OTHER_SORT_ASCENDING"
- qTotalModestring
Can be one of: "TOTAL_OFF""TOTAL_EXPR"
- qReferencedExpressionobject
qReferencedExpression properties
- qvstring
Expression evaluated to string.
-
-
- qMaxNumberPointsinteger
- qAttributeExpressionsarray of objects
List of attribute expressions.
qAttributeExpressions properties
- qExpressionstring
Definition of the attribute expression. Example: "Max(OrderID)"
- qLibraryIdstring
Definition of the attribute expression stored in the library. Example: "MyGenericMeasure"
- qAttributeboolean
If set to true, this measure will not affect the number of rows in the cube.
- qNumFormatobject
Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.
Formatting mechanism
The formatting mechanism depends on the type set in qType, as shown below:
In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.Type is DATE, TIME, TIMESTAMP or INTERVAL
The following applies:
- If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
- If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
- The properties qDec , qThou , qnDec , qUseThou are not used.
Type is INTEGER
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .
Type is REAL
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
- If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
- If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is FIX
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
- If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
Type is MONEY
The following applies:
- If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
- If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).
Type is ASCII
No formatting, qFmt is ignored.
qNumFormat properties
- qTypestring
Can be one of: "U""A""I""R""F""M""D""T""TS""IV"
- qnDecinteger
Number of decimals. Default is 10.
- qUseThouinteger
Defines whether or not a thousands separator must be used. Default is 0.
- qFmtstring
Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.
- qDecstring
Defines the decimal separator. Example: .
- qThoustring
Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,
- qLabelstring
Label of the attribute expression.
- qLabelExpressionstring
Optional expression used for dynamic label.
-
- qNullSuppressionboolean
If set to true, no null values are returned.
-
-
- qContextSetExpressionstring
Set Expression valid for the whole cube. Used to limit computations to the set specified.
-
- qUndoInfoDefobject
Defines if an object should contain information on the number of possible undo and redo.
Properties
"qUndoInfoDef": {} The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
- qValueExpressionobject
Properties
Abbreviated syntax: "qValueExpression":"=<expression>" Extended object syntax: "qValueExpression":{"qExpr":"=<expression>"} Where:
- < expression > is a string.
The "=" sign in the value expression is not mandatory. Even if the "=" sign is not given, the expression is evaluated.The expression is evaluated as a numeric.qValueExpression properties
- qExprstring
- qVariableListDefobject
Defines the list of variables in an app.
qVariableListDef properties
- qTypestring
Type of variables to include in the list.
- qShowReservedboolean
Shows the reserved variables if set to true.
- qShowConfigboolean
Shows the system variables if set to true.
- qDataobject
Contains dynamic JSON data specified by the client.
- qShowSessionboolean
Shows the session variables if set to true.
-
additional optional properties
- objectobjectPrivateAny of:
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
- object
-
-
Response
objectErrors
arraySetProperties(qProp)
const result = await genericObject.setProperties({ "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true }})Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "SetProperties", "params": { "qProp": { "qInfo": { "qId": "value", "qType": "value" }, "qExtendsId": "value", "qMetaDef": {}, "qStateName": "value", "qAppObjectListDef": { "qType": "value", "qData": {} }, "qBookmarkListDef": { "qType": "value", "qData": {}, "qIncludePatches": true }, "qChildListDef": { "qData": {} }, "qDimensionListDef": { "qType": "value", "qData": {} }, "qEmbeddedSnapshotDef": {}, "qExtensionListDef": {}, "qFieldListDef": { "qShowSystem": false, "qShowHidden": false, "qShowSemantic": false, "qShowSrcTables": false, "qShowDefinitionOnly": false, "qShowDerivedFields": false, "qShowImplicit": false }, "qHyperCubeDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qNullSuppression": true, "qIncludeElemValue": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowTotal": true, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCond": { "qv": "value" }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } } } ], "qMeasures": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qReductionMode": "N", "qMode": "S", "qPseudoDimPos": -1, "qNoOfLeftDims": -1, "qAlwaysFullyExpanded": false, "qMaxStackedCells": 5000, "qPopulateMissing": false, "qShowTotalsAbove": false, "qIndentMode": false, "qCalcCond": { "qv": "value" }, "qSortbyYValue": 0, "qTitle": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qColumnOrder": [ 123 ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qDynamicScript": [ "value" ], "qContextSetExpression": "value", "qSuppressMeasureTotals": true }, "qLayoutExclude": {}, "qListObjectDef": { "qStateName": "value", "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qAutoSortByState": { "qDisplayNumberOfRows": 123 }, "qFrequencyMode": "N", "qShowAlternatives": true, "qInitialDataFetch": [ { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 } ], "qExpressions": [ { "qExpr": "value", "qLibraryId": "value" } ], "qDirectQuerySimplifiedView": true }, "qMeasureListDef": { "qType": "value", "qData": {} }, "qMediaListDef": {}, "qNxLibraryDimensionDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qLabelExpression": "value", "qAlias": "value", "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qNxLibraryMeasureDef": { "qLabel": "value", "qDef": "value", "qGrouping": "N", "qExpressions": [ "value" ], "qActiveExpression": 123, "qLabelExpression": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qScriptGenerated": false, "qOrigin": "PROGRAM" }, "qSelectionObjectDef": { "qStateName": "value" }, "qStaticContentUrlDef": { "qUrl": "value" }, "qStringExpression": { "qExpr": "value" }, "qTreeDataDef": { "qStateName": "value", "qDimensions": [ { "qLibraryId": "value", "qDef": { "qGrouping": "N", "qFieldDefs": [ "value" ], "qFieldLabels": [ "value" ], "qSortCriterias": [ { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 } ], "qNumberPresentations": [ { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" } ], "qReverseSort": true, "qActiveField": 123, "qLabelExpression": "value", "qAlias": "value" }, "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qNullSuppression": true, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qShowAll": true, "qOtherLabel": { "qv": "value" }, "qTotalLabel": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ] } ], "qInterColumnSortOrder": [ 123 ], "qSuppressZero": false, "qSuppressMissing": false, "qOpenFullyExpanded": false, "qPopulateMissing": false, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTitle": { "qv": "value" }, "qInitialDataFetch": [ { "qMaxNbrOfNodes": 123, "qTreeNodes": [ { "qArea": { "qLeft": 123, "qTop": 123, "qWidth": 123, "qHeight": 123 }, "qAllValues": true } ], "qTreeLevels": { "qLeft": 123, "qDepth": -1 } } ], "qExpansionState": [ { "qExcludeList": true, "qPos": { "qDimName": "value", "qElemNo": [ 123 ], "qElemValues": [ "value" ] } } ], "qValueExprs": [ { "qLibraryId": "value", "qDef": { "qLabel": "value", "qDescription": "value", "qTags": [ "value" ], "qGrouping": "N", "qDef": "value", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qRelative": true, "qBrutalSum": true, "qAggrFunc": "value", "qAccumulate": 123, "qReverseSort": true, "qActiveExpression": 123, "qExpressions": [ "value" ], "qLabelExpression": "value" }, "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qAttributeDimensions": [ { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qAttribute": true } ], "qCalcCond": { "qv": "value" }, "qCalcCondition": { "qCond": { "qv": "value" }, "qMsg": { "qv": "value" } }, "qTrendLines": [ { "qType": "AVERAGE", "qXColIx": -1, "qCalcR2": false, "qContinuousXAxis": "Never", "qMultiDimMode": "Multi" } ], "qMiniChartDef": { "qDef": "value", "qLibraryId": "value", "qSortBy": { "qSortByState": 123, "qSortByFrequency": 123, "qSortByNumeric": 123, "qSortByAscii": 123, "qSortByLoadOrder": 123, "qSortByExpression": 123, "qExpression": { "qv": "value" }, "qSortByGreyness": 123 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": { "qv": "value" }, "qOtherLimit": { "qv": "value" }, "qOtherLimitMode": "OTHER_GE_LIMIT", "qSuppressOther": false, "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qGlobalOtherGrouping": false, "qOtherCollapseInnerDimensions": false, "qOtherSortMode": "OTHER_SORT_DEFAULT", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": { "qv": "value" } }, "qMaxNumberPoints": -1, "qAttributeExpressions": [ { "qExpression": "value", "qLibraryId": "value", "qAttribute": true, "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0, "qFmt": "value", "qDec": "value", "qThou": "value" }, "qLabel": "value", "qLabelExpression": "value" } ], "qNullSuppression": true } } ], "qContextSetExpression": "value" }, "qUndoInfoDef": {}, "qValueExpression": { "qExpr": "value" }, "qVariableListDef": { "qType": "value", "qShowReserved": true, "qShowConfig": true, "qData": {}, "qShowSession": true } } }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}You can use the StepCycle method with any object that contains a cyclic group as a dimension. This method allows you to move between different fields in a cyclic dimension. A hypercube will avoid field collisions with its other dimensions when cycling in this manner. If all other fields cause collisions then no cycling is performed.
Parameters
- qPathstringRequired
Path to the definition of the object to be selected. For example, /qHyperCubeDef .
- qDimNointegerRequired
Dimension number or index starting from 0. The default value is 0.
- qNbrStepsintegerRequired
Number of steps you want to cycle. Positive values cycle forwards while negative values cycle backwards. A value of 0 leads to no action being taken.
Response
objectErrors
arrayStepCycle(qPath, qDimNo, qNbrSteps)
const result = await genericObject.stepCycle("value", 123, 123)Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "StepCycle", "params": { "qPath": "value", "qDimNo": 123, "qNbrSteps": 123 }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Removes the generic object from the list of approved objects
Response
objectErrors
arrayUnApprove()
const result = await genericObject.unApprove()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "UnApprove"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Unpublishes a generic object.
Response
objectErrors
arrayUnPublish()
const result = await genericObject.unPublish()Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "UnPublish"}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}Unlocks the selected values of a generic object if the target (or handle ) is a generic object
Parameters
- qPathstringRequired
Path to the definition of the object. For example, /qListObjectDef .
- qColIndicesarray of integers
Dimension numbers/indexes where the unlock should apply. Dimension numbers/indexes start from 0. If this parameter is not set, the locked values in all dimensions are unlocked.
Response
objectErrors
arrayUnlock(qPath, qColIndices?)
const result = await genericObject.unlock("value", [ 123])Request
{ "jsonrpc": "2.0", "id": 1, "handle": 3, "method": "Unlock", "params": { "qPath": "value", "qColIndices": [ 123 ] }}Response
{ "jsonrpc": "2.0", "id": 1, "result": {}}