tm1_create_view: TM1 Create View from mdx

Description Usage Arguments Examples

View source: R/tm1_create_view.R

Description

Creates cube view with mdx

Usage

1
tm1_create_view(tm1_connection, cube, view, mdx)

Arguments

tm1_connection

tm1 connection object returned by the function tm1_connection

cube

Name of cube

view

Name of view to be created

mdx

MDX of view as a string

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Not run: 
mdx <- "SELECT
  NON EMPTY
   {[month].[Jan],[month].[Feb],[month].[Mar]}
  ON COLUMNS,
  NON EMPTY
     {[account1].[Price],[account1].[Units]}
  ON ROWS
 FROM [SalesCube]
 WHERE
  (
   [actvsbud].[actvsbud].[Actual],
   [region].[region].[Argentina],
   [model].[model].[S Series 1.8 L Sedan]
  )"
tm1_create_view(
  tm1_connection("localhost", "8881", "admin", "apple"),
  "SalesCube", "test", mdx)

con_obj <- tm1_connection("localhost", "8881", "admin", "apple")
tm1_create_view(con_obj, "SalesCube", "test", mdx)

## End(Not run)

tm1r documentation built on Dec. 15, 2020, 5:36 p.m.