Hi all,
I'm currently working on my first full TM1 system across multiple cubes. I've currently got a problem where I'm trying to transfer data from one cube to another.
I've come across a problem with Turbo Integrator where I'm trying to pull all the information from one cube and CellPut it into the other one. My main issue is reading the data out. I assume I need to create a view which has the lowest level of all elements to get all the information out? When I try to create a view via the Cube Viewer I get it down all down to the lowest level and when I try to save it errors out saying "View may be too large. Operation Aborted". To be fair there are 10 dimension with a lot of elements within there.
Can I create a view without doing it through Cube Viewer or is there another way of pull all the data?
Thanks in advance!
TM1 Views and TI
- jim wood
- Site Admin
- Posts: 3961
- Joined: Wed May 14, 2008 1:51 pm
- OLAP Product: TM1
- Version: PA 2.0.7
- Excel Version: Office 365
- Location: 37 East 18th Street New York
- Contact:
Re: TM1 Views and TI
Hi Jon,
You have 2 options:
1) If you right click on the cube you can create a view by selecting export as text. Make your changes to the dimension selections within this interface and save your view. The view must be public not private. In the past I've used a specific naming convention to stop users trying to use these views.
2) Use the ViewCreate function in TI. If you do this in the prolog you can combine it with SubsetAssign functions and varioud other functions that you can find in the help to create your view. Then epiloge get rid of the view using ViewDestroy.
Option 2 is cleaner but you'll need to work at the TI in stages if you haven't done it before. May be start by using a TI script to create a view. Then try to adapt it by adding subsets etc.
I hope that helps,
Jim.
You have 2 options:
1) If you right click on the cube you can create a view by selecting export as text. Make your changes to the dimension selections within this interface and save your view. The view must be public not private. In the past I've used a specific naming convention to stop users trying to use these views.
2) Use the ViewCreate function in TI. If you do this in the prolog you can combine it with SubsetAssign functions and varioud other functions that you can find in the help to create your view. Then epiloge get rid of the view using ViewDestroy.
Option 2 is cleaner but you'll need to work at the TI in stages if you haven't done it before. May be start by using a TI script to create a view. Then try to adapt it by adding subsets etc.
I hope that helps,
Jim.
Struggling through the quagmire of life to reach the other side of who knows where.
Go Build a PC
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Go Build a PC
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
-
- Posts: 4
- Joined: Tue Apr 19, 2011 1:23 pm
- OLAP Product: TM1
- Version: 9.0.3.196
- Excel Version: 2003
Re: TM1 Views and TI
Many thanks Jim! Thats exactly what I'll do!