tm1_get_dimension_subsets <- function(tm1_connection, dimension) {
tm1_adminhost <- tm1_connection$adminhost
tm1_httpport <- tm1_connection$port
tm1_auth_key <- tm1_connection$key
tm1_ssl <- tm1_connection$ssl
# added because some http does not know space
dimension <- gsub(" ", "%20", dimension, fixed=TRUE)
u1 <- ifelse(tm1_ssl==TRUE, "https://", "http://")
#u1 <- "https://"
u2 <- tm1_adminhost
u3 <- ":"
u4 <- tm1_httpport
u5 <- "/api/v1/Dimensions('"
u6 <- dimension
u7 <- "')/Hierarchies('"
u8 <- dimension
u9 <- "')/Subsets"
# url development
url <- paste0(u1, u2, u3, u4, u5, u6, u7, u8, u9)
#url = "https://localhost:8881/api/v1/Dimensions('Account1')/Hierarchies('Account1')/Subsets"
# post request
tm1_process_return <-
httr::GET(url,
httr::add_headers("Authorization" = tm1_auth_key))
# check return if error
if (is.null(jsonlite::fromJSON(httr::content(tm1_process_return, "text"))$error$message) == FALSE) {
message(jsonlite::fromJSON(httr::content(tm1_process_return, "text"))$error$message)
stop()
}
if (length(jsonlite::fromJSON(httr::content(tm1_process_return, "text"))$value) == 0) {
message(paste0("No subset found in dimension ", dimension))
stop()
}
tm1_return <- jsonlite::fromJSON(httr::content(tm1_process_return, "text"))
return_object <- data.frame(tm1_return$value$Name, tm1_return$value$UniqueName, tm1_return$value$Expression)
colnames(return_object)[1] <- "Name"
colnames(return_object)[2] <- "UniqueName"
colnames(return_object)[3] <- "Expression"
return(return_object)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.