DimensionDestroy: How to Delete a Dimension in TM1
Sometimes we want to just delete a dimension from TM1. We get lots of failed searches on our site for DimensionDelete – but unfortunately that doesn’t exist. IBM, in their wisdom, have called the function DimensionDestroy, rather than the logical DimensionDelete. Syntax of DimensionDestroy The syntax is very easy: DimensionDestroy(DimName); Where DimName is the name […]
Checking if an Attribute Exists (essentially an “AttributeExists” Function)
Here is a really easy method for checking if an Attribute Exists in TM1 via Turbo Integrator process. It essentially does what an “AttributeExists” or an “AttrExists” function would do for you if they existed in TM1.
DimensionCreate: How to Create a Dimensions in a TM1 Process (TI)
To create a dimension in a TM1 model use the DimensionCreate function in Turbo Integrator processes. Combine with IF and DimensionExists.
DimensionExists: Checking if a Dimension is in TM1
To check if a dimension already exists in a TM1 model use the DimensionExists function in Turbo Integrator processes. Combine with IF and DimensionCreate.