Turbo Integrator Error handling
-
- Posts: 16
- Joined: Tue Nov 05, 2013 9:07 am
- OLAP Product: cognos tm1
- Version: 10.2.1
- Excel Version: 2010
Turbo Integrator Error handling
While running TI process through action button in TM1 Perspective how can i display error descriptions regarding corresponding TI process in excel perspective only. Or if its not possible then can i get that same error description in notepad or excel or word that will prompt automatically with complete error details so that user don't have to go to TM1ProcessError.log file each time to check error. Or if you any enhanced error reporting that would help application user of Excel Perspective to easily visualise their error occuring while running respective TI Process. Any kind of your guidance is highly appreciated.
- jim wood
- Site Admin
- Posts: 3958
- 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: Turbo Integrator Error handling
You do something with Ascii Output. That would give you a file to work with. The rest is Excel. Saying that you already have the error log file to work with, all you have to do is resolve the file name,
Jim.
Jim.
Struggling through the quagmire of life to reach the other side of who knows where.
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
- jim wood
- Site Admin
- Posts: 3958
- 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: Turbo Integrator Error handling
That or you could create an error log cube and load the details in there and display them on the next sheet.
Struggling through the quagmire of life to reach the other side of who knows where.
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
-
- MVP
- Posts: 2836
- Joined: Tue Feb 16, 2010 2:39 pm
- OLAP Product: TM1, Palo
- Version: Beginning of time thru 10.2
- Excel Version: 2003-2007-2010-2013
- Location: Atlanta, GA
- Contact:
Re: Turbo Integrator Error handling
This is my preferred approach when errors needed to be retained for future reference, like when there are exceptions that need to be "worked".jim wood wrote:That or you could create an error log cube and load the details in there and display them on the next sheet.
-
- MVP
- Posts: 600
- Joined: Wed Aug 17, 2011 1:19 pm
- OLAP Product: TM1
- Version: 9.5.2 10.1 10.2
- Excel Version: 2003 2007
- Location: York, UK
Re: Turbo Integrator Error handling
If you are writing to a cube does the outcome not depend on whether the TM1 error is minor or serious? If it is serious I was under the impression that all data written to cubes by the process would be rolled back. Unfortunately I am not in a position to check this myself.
-
- Posts: 16
- Joined: Tue Nov 05, 2013 9:07 am
- OLAP Product: cognos tm1
- Version: 10.2.1
- Excel Version: 2010
Re: Turbo Integrator Error handling
HI Jim, thanks for your valuable reply. If possible can you explain me how to achieve this error reporting using ASCII Output.jim wood wrote:You do something with Ascii Output. That would give you a file to work with. The rest is Excel. Saying that you already have the error log file to work with, all you have to do is resolve the file name,
Jim.
- jim wood
- Site Admin
- Posts: 3958
- 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: Turbo Integrator Error handling
You would combine CellIsUpdatable with AsciiOutput. You can look both of these up in the Reference guide. Also you could include dimix / ElLev checks for each dimension to find where the error is. You'd combine CellIsUpdatable with checks I just mentioned when writing to a cube as well. When writing to a cube you can combine the control dimension }processes with a string reference dimension. So say for example the reference dimension contained 1,2,3, etc you can increment it every time your errors reaches the number of elements within the dimension. You can also expand the cube to include the likes of time executed and a few other things depending on what you want to display.
As Duncan mentioned this only covers minor errors. You can cover major errors by executing the main process from a wrapper process. ExecuteProcess returns an error code that you can in turn use to either export to flat file or write back to your cube.
I hope this helps,
Jim.
As Duncan mentioned this only covers minor errors. You can cover major errors by executing the main process from a wrapper process. ExecuteProcess returns an error code that you can in turn use to either export to flat file or write back to your cube.
I hope this helps,
Jim.
Struggling through the quagmire of life to reach the other side of who knows where.
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
-
- Posts: 16
- Joined: Tue Nov 05, 2013 9:07 am
- OLAP Product: cognos tm1
- Version: 10.2.1
- Excel Version: 2010
Re: Turbo Integrator Error handling
Thanks Jimjim wood wrote:You would combine CellIsUpdatable with AsciiOutput. You can look both of these up in the Reference guide. Also you could include dimix / ElLev checks for each dimension to find where the error is. You'd combine CellIsUpdatable with checks I just mentioned when writing to a cube as well. When writing to a cube you can combine the control dimension }processes with a string reference dimension. So say for example the reference dimension contained 1,2,3, etc you can increment it every time your errors reaches the number of elements within the dimension. You can also expand the cube to include the likes of time executed and a few other things depending on what you want to display.
As Duncan mentioned this only covers minor errors. You can cover major errors by executing the main process from a wrapper process. ExecuteProcess returns an error code that you can in turn use to either export to flat file or write back to your cube.
I hope this helps,
Jim.
really this helps a lot...

Can you guide me steps how to direct ExecuteProcess returned error into flat file(notepad) ?
- jim wood
- Site Admin
- Posts: 3958
- 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: Turbo Integrator Error handling
Did you read through help on ExecuteProcess in either reference guide or the documentation that you can find with in Architect? It tells you what error code ExecuteProcess returns.
Struggling through the quagmire of life to reach the other side of who knows where.
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7