Search found 7 matches
- Tue Jun 03, 2025 2:12 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Re: Changing a TI to create a new view on the fly is causing no loops through the data tab
Also to note the requirement to at least have something on 0 doesn't apply when using the view as a zero out view. I've taken several of these without columns defined the view the same way and done a ViewZeroOut call with no problem. It seems it only applies to a view as a data source.
- Tue Jun 03, 2025 1:57 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Re: Changing a TI to create a new view on the fly is causing no loops through the data tab
THANK YOU! I did what you suggested and got a temporary memory pool error. So I decided to rewrite the mdx below # set the MDX for the dynamic view vDataSourceMDX = 'SELECT non empty { [currency].[currency].[Local] } ON 0, NON EMPTY { TM1SubsetToSet([entity].[entity],"mdxLeaf","public...
- Thu May 29, 2025 5:52 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Re: Changing a TI to create a new view on the fly is causing no loops through the data tab
I think what may be happening is all the intersecting cells are 0 and the old TI is making a file full of zeros while the new TI is not looping the zeroes through data and metadata. Trying to figure out a way to prove that
- Thu May 29, 2025 5:24 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Re: Changing a TI to create a new view on the fly is causing no loops through the data tab
I also tried
ViewExtractSkipCalcsSet(vCubName, vDataSourceView,0); and it didn't change anything
ViewExtractSkipCalcsSet(vCubName, vDataSourceView,0); and it didn't change anything
- Thu May 29, 2025 5:15 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Re: Changing a TI to create a new view on the fly is causing no loops through the data tab
It is a subset the contains a mix of consolidations and leaf elements. I did change the view to use a single leaf value in its place and got the same result (no loops through the data tab)
- Thu May 29, 2025 4:04 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Changing a TI to create a new view on the fly is causing no loops through the data tab
- Replies: 7
- Views: 11839
Changing a TI to create a new view on the fly is causing no loops through the data tab
I read the useful tips FAQ sorry in advance if I didn't follow it right I'm in PAW. I think we're 2.0.0.84. I have a TI process where the data source is a named view tiListSalesYTD. My goal is to change the TI to do the exact same thing but make the view in the prolog. I will post the code after thi...
- Fri Mar 06, 2020 3:13 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: ODBCOutput with select statement
- Replies: 1
- Views: 2587
ODBCOutput with select statement
I've used ODBCOutput to do dml and ddl on oracle tables but is this possible? ODBCOutput(vConnection, 'select 12345 into %vNumber% from dual'); The reason is I'd like to use this as like a post-query against a sql based ODBC data source in a process. I've read all over the place and seen numerous in...