Get Drill Through Report
/essbase/rest/v1/applications/{applicationName}/databases/{databaseName}/reports/{name}
Returns the specified drill through report from the specified application and database.
Request
-
applicationName(required): string
Application name.
-
databaseName(required): string
Database name.
-
name(required): string
Drill through report name.
Response
- application/json
- application/xml
200 Response
OK
The drill through report was retrieved successfully. Returns the links to get, edit, or delete the report.
object
Drill through report definition. Determines the access users should have to external information. Drill through report definitions are associated with a cube, and include a column mapping (required), a drillable region (required), and a mapping for runtime parameters (optional - can be used if the Datasource query is parameterized).
-
columnMapping:
object columnMapping
Additional Properties Allowed: ColumnMappingInfo
Specification of which external source columns should be included in the drill through report, which Essbase dimensions those columns map to, and (optionally) a generation/level filter condition indicating how much depth of access to provide.
-
columns:
array columns
List of columns from the external Datasource that you want included in the drill through report.
-
dataSourceName:
string
Name of the Datasource used for this drill through report definition.
-
drillableRegions:
array drillableRegions
Specification of which cell intersections offer access to drill through reports (or a URL). Specify using Essbase member names and (optionally) member-set calculation functions. Example: Market,Year,Scenario,Sales,@LEVMBRS(Product,1)
-
links:
array links
-
name:
string
Name of the drill through report definition.
-
parameterMapping:
object parameterMapping
Additional Properties Allowed: RunTimeParametersInfo
Optional specification of dimension, generation, or level mapping for runtime parameters (if implemented in a Datasource), enabling further customization of drill through report results based on the variable context.
-
type:
string
Type of drill through report definition:
DATASOURCE
to drill through to an external source system orURL
to drill through to a web URL. -
url:
string
Static or dynamic URL string. Use if you are defining drill through to external data using URLs.
-
useTempTables:
boolean
Whether Essbase should create temporary tables for drill through performance improvement for queries that have a large number of values in the SQL ???IN??? clause.
object
Specification of which external source columns should be included in the drill through report, which Essbase dimensions those columns map to, and (optionally) a generation/level filter condition indicating how much depth of access to provide.
array
List of columns from the external Datasource that you want included in the drill through report.
array
Specification of which cell intersections offer access to drill through reports (or a URL). Specify using Essbase member names and (optionally) member-set calculation functions. Example: Market,Year,Scenario,Sales,@LEVMBRS(Product,1)
object
Optional specification of dimension, generation, or level mapping for runtime parameters (if implemented in a Datasource), enabling further customization of drill through report results based on the variable context.
object
-
dimension:
string
-
generation:
string
-
generationNumber:
integer(int32)
-
level:
string
-
type:
string
Allowed Values:
[ "DIMENSION", "GENERATION", "LEVEL0", "PARENT_CHILD" ]
object
-
dimension:
string
-
generation:
string
-
generationNumber:
integer(int32)
-
level:
string
-
type:
string
Allowed Values:
[ "DIMENSION", "GENERATION", "LEVEL0", "PARENT_CHILD" ]
400 Response
Bad Request
Failed to get the report. The application name, database name, or report name may be incorrect.
500 Response
Internal Server Error.
Examples
The following example shows how to retrieve information about a named drill through report in the 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 GET "https://myserver.example.com:9001/essbase/rest/v1/applications/SampleDtr/databases/Basic/reports/drill2" -H Accept:application/json -H Content-Type:application/octet-stream -u %User%:%Password%
Example of Response Body
The following example shows the contents of the response body in JSON format:
{
"name" : "drill2",
"columns" : [ "DIMENSION_PRODUCT", "DIMENSION_MARKET", "DIMENSION_YEAR", "DIMENSION_SCENARIO", "SALES", "COGS", "MARKETING", "PAYROLL", "MISC", "INITIAL_INVENTORY", "ADDITIONS" ],
"dataSourceName" : "phx_DS",
"drillableRegions" : [ "@DESCENDANTS(\"Measures\")" ],
"columnMapping" : {
"DIMENSION_PRODUCT" : {
"dimension" : "Product",
"type" : "DIMENSION"
},
"DIMENSION_MARKET" : {
"dimension" : "Market",
"level" : "Level0",
"type" : "LEVEL0"
},
"DIMENSION_YEAR" : {
"dimension" : "Year",
"generation" : "Quarter",
"type" : "GENERATION",
"generationNumber" : 2
},
"DIMENSION_SCENARIO" : {
"dimension" : "Scenario",
"generation" : "Gen1",
"type" : "GENERATION",
"generationNumber" : 1
}
},
"parameterMapping" : {
"Param1" : {
"dimension" : "Year",
"level" : "Level0",
"type" : "LEVEL0"
}
},
"type" : "DATASOURCE",
"useTempTables" : false,
"links" : [ {
"rel" : "get",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/applications/SampleDtr/databases/Basic/reports/drill2",
"method" : "GET"
}, {
"rel" : "delete",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/applications/SampleDtr/databases/Basic/reports/drill2",
"method" : "DELETE"
}, {
"rel" : "edit",
"href" : "https://myserver.example.com:9001/essbase/rest/v1/applications/SampleDtr/databases/Basic/reports/drill2",
"method" : "PUT"
} ]
}