Save MDX Report

post

/essbase/rest/v1/applications/{application}/databases/{database}/queries

Request

Supported Media Types
Path Parameters
Body ()

Details of query to be saved.

Root Schema : NamedQuery
Type: object
Show Source
Nested Schema : Query
Type: object
Show Source
Nested Schema : NamedQueriesPreferences
Type: object
Show Source
  • When the memberIdentifierType: ALIAS and the aliasTable are set to a valid alias table name, the resulting mdx grid contains member names from the specified table. If the value of this property is not set then names are picked from the Default alias table.

  • Set to true to enable query result to return a set of metadata attributes besides the actual data value.

  • Set to true to omit data values from the output set. Default is false.

  • Set to true to return the formatted values for cells of type text or date, or cells associated with a format string. Default is true.

  • Set to true to return the formatted values for cells.

  • Set to true to hide the restricted cell data in the output.

  • Set to true to suppress the meaningless cell data in the output. For example, missing or structurally irrelevant cells.

  • Allowed Values: [ "NAME", "ALIAS", "UNIQUE_NAME" ]

    Specify whether metadata in the output should refer to member names, member aliases, or unique member names (in case of duplicate member enabled outlines).

  • Set to true to return a comma-separated list of all text values associated with the cell in the output.

  • Set to true to add URLs to each applicable cell so users can click through to the source data. This works only if the Essbase drill-through links are configured.

Back to Top

Response

Supported Media Types

200 Response

OK

MDX report saved successfully.

Body ()
Root Schema : NamedQuery
Type: object
Show Source
Nested Schema : Query
Type: object
Show Source
Nested Schema : NamedQueriesPreferences
Type: object
Show Source
  • When the memberIdentifierType: ALIAS and the aliasTable are set to a valid alias table name, the resulting mdx grid contains member names from the specified table. If the value of this property is not set then names are picked from the Default alias table.

  • Set to true to enable query result to return a set of metadata attributes besides the actual data value.

  • Set to true to omit data values from the output set. Default is false.

  • Set to true to return the formatted values for cells of type text or date, or cells associated with a format string. Default is true.

  • Set to true to return the formatted values for cells.

  • Set to true to hide the restricted cell data in the output.

  • Set to true to suppress the meaningless cell data in the output. For example, missing or structurally irrelevant cells.

  • Allowed Values: [ "NAME", "ALIAS", "UNIQUE_NAME" ]

    Specify whether metadata in the output should refer to member names, member aliases, or unique member names (in case of duplicate member enabled outlines).

  • Set to true to return a comma-separated list of all text values associated with the cell in the output.

  • Set to true to add URLs to each applicable cell so users can click through to the source data. This works only if the Essbase drill-through links are configured.

400 Response

Bad Request

Failed to save MDX report.

Back to Top

Examples

The following example shows how to save an MDX report in the context of an Essbase cube.

This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat.

Script with cURL Command

call properties.bat
curl -X POST https://myserver.example.com:9001/essbase/rest/v1/applications/ASOSamp/databases/Basic/queries -H "Accept:application/json" -H "Content-Type:application/json" --data "@./mdxAggregateT1.json" -u %User%:%Password%

Sample JSON Payload

The cURL example above delivers the following JSON payload in mdxAggregateT1.json.

{
  "name" : "mdxAggregateT1",
  "type" : "MDX",
  "query" : {
    "spec" : "WITH \n SET [T1] AS '{[Time].[1st Half]}'\n SET [GM] AS '{Children ( [Geography].[South] )}'\n MEMBER [Measures].[m1] as 'Aggregate(CrossJoin([T1],{[Geography].CurrentMember}),[Measures].[Price Paid])'\nSELECT \n {[Measures].[m1]} \nON COLUMNS,\n NON EMPTY {CrossJoin([T1] ,[GM])}\nON ROWS\nFROM ASOSamp.Basic"
  }
}

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "name" : "mdxAggregateT1",
  "type" : "MDX",
  "query" : {
    "spec" : "WITH \n SET [T1] AS '{[Time].[1st Half]}'\n SET [GM] AS '{Children ( [Geography].[South] )}'\n MEMBER [Measures].[m1] as 'Aggregate(CrossJoin([T1],{[Geography].CurrentMember}),[Measures].[Price Paid])'\nSELECT \n {[Measures].[m1]} \nON COLUMNS,\n NON EMPTY {CrossJoin([T1] ,[GM])}\nON ROWS\nFROM ASOSamp.Basic"
  },
  "links" : [ {
    "rel" : "self",
    "method" : "GET"
  }, {
    "rel" : "delete",
    "method" : "DELETE"
  }, {
    "rel" : "update",
    "method" : "PUT"
  }, {
    "rel" : "Get data In JSON",
    "method" : "GET"
  }, {
    "rel" : "Get data in HTML",
    "href" : "?format=HTML",
    "method" : "GET"
  }, {
    "rel" : "Get data in Excel",
    "href" : "?format=XLSX",
    "method" : "GET"
  }, {
    "rel" : "Get data in CSV",
    "href" : "?format=CSV",
    "method" : "GET"
  } ]
}
Back to Top