TI Error

Post Reply
mincharug.shulft
Regular Participant
Posts: 155
Joined: Fri May 20, 2011 8:17 am
OLAP Product: Applix,Cognos TM!
Version: applix9.0Cognos tm1 9.5.1
Excel Version: Excel 2010 2007

TI Error

Post by mincharug.shulft »

HI,
i would apprciate for your help here.
I have build some calculations using TI process, and also i passed the parameters(in TI under Parameters TAB ,there are three paramaeters)
so once the Processes completes with error warnings and iam not entirley sure what is mean of. Could you please help me to understand why these are occuring. Listed below are just a few examples coming from log file.
and also i have taken the Maps TAB and under Cube TAB i have enabled the NO Action,Accumulate Values ..

Error;TM1ProcessError_20120119195548_manupulation_ascm.log;"stationary_elem_com","Abdabi","entrie","satity","central","EN","PAK",Data Source line (268) Error: Data procedure line (108): Cell type is consolidated
Error;TM1ProcessError_20120119195548_manupulation_ascm.log;Error: Data procedure line (108): error repeats 39 times
Error;TM1ProcessError_20120120121901_manupulation_ascm.log;"stationary.elem.com","Abdabi","entrie","satity","central","EN","PAK",Data Source line (268) Error: Data procedure line (108): Cell type is consolidated
Error;TM1ProcessError_20120120121901_manupulation_ascm.log;Error: Data procedure line (108): error repeats 39 times
Edward Stuart
Community Contributor
Posts: 248
Joined: Tue Nov 01, 2011 10:31 am
OLAP Product: TM1
Version: All
Excel Version: All
Location: Manchester
Contact:

Re: TI Error

Post by Edward Stuart »

You can't write to a consolidated value, try adding in a IFCELLISUPDATEABLE condition,

Sorry for short reply am in a hurry!

Edd
lotsaram
MVP
Posts: 3706
Joined: Fri Mar 13, 2009 11:14 am
OLAP Product: TableManager1
Version: PA 2.0.x
Excel Version: Office 365
Location: Switzerland

Re: TI Error

Post by lotsaram »

and/or look at how you are building your data source and restrict the processing to leaf cells only.
mincharug.shulft
Regular Participant
Posts: 155
Joined: Fri May 20, 2011 8:17 am
OLAP Product: Applix,Cognos TM!
Version: applix9.0Cognos tm1 9.5.1
Excel Version: Excel 2010 2007

Re: TI Error

Post by mincharug.shulft »

Edward Stuart wrote:You can't write to a consolidated value, try adding in a IFCELLISUPDATEABLE condition,

Sorry for short reply am in a hurry!

Edd
Hi,
Thanks for your valuable reply.
COuld you please explain little elabratly still i am trying to understand.Thanks in advance.
Christopher Kernahan
Community Contributor
Posts: 147
Joined: Mon Nov 29, 2010 6:30 pm
OLAP Product: Cognos TM1
Version: 10.1
Excel Version: Office 2010

Re: TI Error

Post by Christopher Kernahan »

Error;TM1ProcessError_20120119195548_manupulation_ascm.log;"stationary_elem_com","Abdabi","entrie","satity","central","EN","PAK",Data Source line (268) Error: Data procedure line (108): Cell type is consolidated
One or more of the elements listed above is a Consolidation, which in the Subset Editor will look something like this;

∑ Consolidation
N Child
N Child

Go to the cube in question, and build a view which consists of all of the elements listed in the error log statement above. There you will see which element(s) is a consolidation - which you cannot write data into. You can only write data into an N or S type of element.

Then, rewrite your TI process so that before you load data (CellPutN), you check if the CellIsUpdateable. Read the documentation on how this TI function works, and then implement it.

If you can't rewrite it yourself, post the code from the Data tab in here and we will try and help.
mincharug.shulft
Regular Participant
Posts: 155
Joined: Fri May 20, 2011 8:17 am
OLAP Product: Applix,Cognos TM!
Version: applix9.0Cognos tm1 9.5.1
Excel Version: Excel 2010 2007

Re: TI Error

Post by mincharug.shulft »

Hi Christopher Kernahan,
Thanks lot for your reply.

the below is the condition that i am getting the error please help me how we should escape the consolidate cell before putting the numberi value.

IF( cal_costs <> 0);

CellPutN( Total_amount,cname,location,area,streat,vardu,'Total_hours',
department,GroupName,accounts,Type of cost,EPPI );
above condition i got it from the Data tab.and also the above the (108) line that we are getting the error in logs.

i am expecting the soon thanks lot in advance.


Christopher Kernahan wrote:
Error;TM1ProcessError_20120119195548_manupulation_ascm.log;"stationary_elem_com","Abdabi","entrie","satity","central","EN","PAK",Data Source line (268) Error: Data procedure line (108): Cell type is consolidated
One or more of the elements listed above is a Consolidation, which in the Subset Editor will look something like this;

∑ Consolidation
N Child
N Child

Go to the cube in question, and build a view which consists of all of the elements listed in the error log statement above. There you will see which element(s) is a consolidation - which you cannot write data into. You can only write data into an N or S type of element.

Then, rewrite your TI process so that before you load data (CellPutN), you check if the CellIsUpdateable. Read the documentation on how this TI function works, and then implement it.

If you can't rewrite it yourself, post the code from the Data tab in here and we will try and help.
User avatar
qml
MVP
Posts: 1098
Joined: Mon Feb 01, 2010 1:01 pm
OLAP Product: TM1 / Planning Analytics
Version: 2.0.9 and all previous
Excel Version: 2007 - 2016
Location: London, UK, Europe

Re: TI Error

Post by qml »

mincharug.shulft wrote:please help me how we should escape the consolidate cell before putting the numberi value
Chris has already pointed you in the right direction. You need to use the CellIsUpdateable TI function with an IF clause.
Kamil Arendt
mincharug.shulft
Regular Participant
Posts: 155
Joined: Fri May 20, 2011 8:17 am
OLAP Product: Applix,Cognos TM!
Version: applix9.0Cognos tm1 9.5.1
Excel Version: Excel 2010 2007

Re: TI Error

Post by mincharug.shulft »

Hi,
i have written the script like that ....kindly please help me whether correct or thanks in adavance to all gemtle mans

IF(cal_costs <> 0);

ActiveCell=CellIsUpdateable(measured_cube,location,area,streat,vardu,'Total_hours',
department,GroupName,accounts,Type of cost,EPPI );

IF( ActiveCell = 1);

CellPutN(Total_amount,location,area,streat,vardu,'Total_hours',
department,GroupName,accounts,Type of cost,EPPI );
ENDIF;
ENDIF;
Sebastian Paulussen
Posts: 12
Joined: Mon Feb 20, 2012 1:02 pm
OLAP Product: TM1
Version: 9.5+
Excel Version: 2010
Location: Rhine-Neckar-Area, Germany

Re: TI Error

Post by Sebastian Paulussen »

Hi mincharug,

the idea ist correct, unfotunately i cannot check the syntax.
User avatar
qml
MVP
Posts: 1098
Joined: Mon Feb 01, 2010 1:01 pm
OLAP Product: TM1 / Planning Analytics
Version: 2.0.9 and all previous
Excel Version: 2007 - 2016
Location: London, UK, Europe

Re: TI Error

Post by qml »

The logic is correct, but the variable "Type of cost" you are using seems odd as it has spaces in the name. Are you sure you have a variable with this name in your TI? There might also be a typo in the "streat" variable's name.

Most of all, have you made the effort to actually run this and check if it works?
Kamil Arendt
jstrygner
MVP
Posts: 195
Joined: Wed Jul 22, 2009 10:35 pm
OLAP Product: TM1
Version: 9.5.2 FP3
Excel Version: 2010

Re: TI Error

Post by jstrygner »

You also miss cube reference in CellPutN.
In CellIsUpdateable you refer to the measured_cube cube, so you should also have:

CellPutN(Total_amount,measured_cube,location,area,streat,vardu,'Total_hours',
department,GroupName,accounts,Type of cost,EPPI );

I assume the Total_amount variable is numeric type.
mincharug.shulft
Regular Participant
Posts: 155
Joined: Fri May 20, 2011 8:17 am
OLAP Product: Applix,Cognos TM!
Version: applix9.0Cognos tm1 9.5.1
Excel Version: Excel 2010 2007

Re: TI Error

Post by mincharug.shulft »

Hi All,

its really mindblowing replies i got it and i chaged all and its working fine
incase of any issues i wil get back to you.

handsup to olap formum
Post Reply