-
Cubewise March to May 2019 Update
Time flies! This time we present a summary of three months full of events, software releases, and developments from Cubewise. Conferences The first half of our conference season is now over. A lot of clients joined us in Paris and Hongkong to learn all about the latest developments in the TM1 and Planning Analytics market,…
-
A New Hope with the TM1 REST API
Python has recently arisen as a first in class programming language in the development of modern applications as well as data analysis mainly because it requires relatively little time and effort to learn. Its syntax is quite straightforward, and you can practically read it and understand it with very little interpretation. Consequently, developers now tend…
-
Working with Python lists and dictionaries in a TM1 context
Lists and dictionaries are probably the most important data structures that you should be aware off when writing Python scripts for your IBM TM1 and Planning Analytics application.
-
Getting Data from TM1 with Python
TM1py makes all the goodness of the Python ecosystem available to your IBM TM1 and Planning analytics cubes data. Python is very popular for Data Science and for a lot of other stuff. To use a Python library with your cubes data, you will need to get your data out of your cubes, do the…
-
Cubewise Opens First Branch In Germany
Cubewise opened a branch in Munich this month, consolidating its role as IBM Germany’s leading Platinum Partner. Markus Fynmore also joins Cubewise Germany as Practice Manager at the new Branch in Munich. Cubewise, winner of the IBM Solutions Bestseller Award 2018, opened its first German branch in Munich this month. (From left to right: Marco…
-
Installing TM1py
This article explains the steps to install TM1py. Installing TM1py will take you just few minutes.
-
The Revenge of TM1 Web
TM1 Web has been one of the main alternative user interfaces to Excel for planning and forecasting applications even since the release as early as back in 1997. This old friend has allowed business users to deploy web applications that can be easily created in spreadsheets.
-
Filter strings in bedrock
Understanding how the pFilter parameter encodes filter strings is central to understanding the bedrock library. Bedrock converts the contents of the pFilter string into views by splitting the string into dimension names and element names and creating the view on the fly. Let’s examine the components of the filter string using the process }bedrock.cube.view.create – pCube = “Employee” – pFilter = “Year…
-
An introduction to creating subsets with Bedrock
This post is a quick tutorial covering creating subsets with the bedrock 4 library. To get a copy of the library you can download it from GitHub. Let’s examine bedrock’s workhorse process of subset creation, }bedrock.hier.sub.create. This process basically remains the same as in previous versions of the bedrock library. The process will create a static subset…
-
List and Wildcard Functionality in bedrock
The bedrock library has always included support for lists and wildcards in strings passed to parameters. In previous versions of the library, the implementation of list and wildcard support was inconsistent with some bedrock v3 processes allowing users to input a list of objects separated by a delimiter and some included wildcard functionality. However, other…