Search found 178 matches

by winsonlee
Fri Jun 15, 2012 5:29 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI Process Log Cube
Replies: 5
Views: 4627

Re: TI Process Log Cube

http://www.bihints.com/monitoring_chore ... ail_part_2

prob you can do something like the above tutorial.
by winsonlee
Thu Jun 14, 2012 6:47 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 API: evoking subset editor screen
Replies: 2
Views: 2338

Re: TM1 API: evoking subset editor screen

Have you tried the following code?

mySubsets = myServer.Dimensions[dimension_name].PublicSubsets;
sSubset = mySubsets[subset_name];
by winsonlee
Tue Jun 05, 2012 9:28 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need to make a change in existing TM1 application
Replies: 8
Views: 4683

Re: Need to make a change in existing TM1 application

when you mention common, what is it referring to ? From the hierarchy, common and license looks like a consolidation element instead of an attribute. The number that you are providing is a count of how many work station there are ? I presume your source data looks something like the following ? work...
by winsonlee
Tue Jun 05, 2012 12:37 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Web 952 Date Issue
Replies: 3
Views: 2566

Re: TM1 Web 952 Date Issue

I have exactly the same issue as you have a while ago. When excel is converted to tm1web there might be certain things that cant be recognized by the code that does the conversion. I just try an error to find out the answer.
by winsonlee
Tue Jun 05, 2012 12:31 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need to make a change in existing TM1 application
Replies: 8
Views: 4683

Re: Need to make a change in existing TM1 application

Has the changes for license and common attribute been updated on the workstation dimension ? or you are looking for solution on how to update the attribute on the workstation dimension ?
by winsonlee
Sun Jun 03, 2012 1:05 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Xcelerator clients installation issues
Replies: 7
Views: 8323

Re: Xcelerator clients installation issues

when you install Architect and Xcelerator on the client workstation, is it login as administrator or the normal user login ?
by winsonlee
Sat Jun 02, 2012 5:19 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Hierarchy extraction to an Oracle table
Replies: 3
Views: 2708

Re: Dimension Hierarchy extraction to an Oracle table

hi manoj, just incase if you are asking how to put levels of data into table, i can provide you with some idea how this can be done before using ODBC connect. On your TI code you can use 3 variable, Level0, Level1, Level2 Then you can use ELLEV to check what level is the element in the structure. if...
by winsonlee
Sat Jun 02, 2012 1:12 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 implementation
Replies: 3
Views: 2645

Re: TM1 implementation

It is important to know the behaviour of TM1 as well. Some you may find it on the Tm1 developer documentation from IBM. Some you will only find out after working on the software for a while. Small things like the sequence of the dimension plays an important part in determining the cube performance. ...
by winsonlee
Fri Jun 01, 2012 12:54 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Web 952 Date Issue
Replies: 3
Views: 2566

Re: TM1 Web 952 Date Issue

Have you tried putting " ' " before the date ? Sometimes using the excel convert format doesnt really work. But putting a single quote before the date can be for sure that it is a string instead of a date.
by winsonlee
Fri Jun 01, 2012 5:03 am
Forum: Enhancements
Topic: ASCIIAPPEND
Replies: 13
Views: 101853

Re: ASCIIAPPEND

You can use dos to append the new logfile to an existing log file.

ExecuteCommand('cmd /c type para.log >> paraTemp.log',0);
by winsonlee
Thu May 31, 2012 10:36 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Moving Average Rule
Replies: 10
Views: 6266

Re: Moving Average Rule

haha... thats right. that would resolve all the sequence issue.
by winsonlee
Thu May 31, 2012 10:15 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Moving Average Rule
Replies: 10
Views: 6266

Re: Moving Average Rule

that looks like a resonable solution that doesnt require much work to maintain it. but would like to further emphasize that using dimix, the sequence of element created in the dimension is important. eg if Jun is created subsequently all the days follow by Jul and all the days, therefore it will com...
by winsonlee
Thu May 31, 2012 9:56 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Moving Average Rule
Replies: 10
Views: 6266

Re: Moving Average Rule

using the rules define by declanr, I guess it is possbile if the year and the month date dimension is combine into one dimension and use attribute to define prior day according to the existance of the data but this will require alot of work to maintain the attribute as well.
by winsonlee
Thu May 31, 2012 9:44 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Moving Average Rule
Replies: 10
Views: 6266

Re: Moving Average Rule

Looks like a good idea. but i would like to confirm about the rules. using the rules given wouldnt it mean May-14 = (May-07 + May-08 + May-09 + May-10 + May-11 + May-14 ) / 6 ? May-05 0 May-06 0 May-07 187,989 May-08 203,375 May-09 236,468 May-10 106,078 May-11 426,669 may-12 0 May-13 0 May-14 296,7...
by winsonlee
Thu May 31, 2012 5:53 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Moving Average Rule
Replies: 10
Views: 6266

Re: Moving Average Rule

Not too sure if it can be done via rules as you are looking to skip days which is 0. I tried using TI process to do it and it is achievable. Create a view of all days at N element level and years and set "Skip Zero /Blank values". temp1 = temp2; temp2 = temp3; temp3 = temp4; temp4 = temp5;...
by winsonlee
Thu May 31, 2012 3:51 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Export periods across columns subset for source view
Replies: 5
Views: 4671

Re: Export periods across columns subset for source view

you wanted to have a suppress zero using TI code instead ?

have you tried using
ViewExtractSkipZeroesSet (Cube, ViewName, Flag);
or
ViewColumnSuppressZeroesSet(Cube, ViewName, Flag);
by winsonlee
Wed May 30, 2012 10:36 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Cognos Express 10.1
Replies: 20
Views: 21855

Re: Cognos Express 10.1

did you have an earlier version installed previously ? did it uninstall successfully without giving any error ?
by winsonlee
Wed May 30, 2012 10:22 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Auditing User Usage - to minimize the no.of user licences
Replies: 13
Views: 7693

Re: Auditing User Usage - to minimize the no.of user licence

correct me if i am wrong, the ClientPropertiesSyncInterval parameter is used to trigger the logging by certain interval and not by changes made on the STATUS cell in }ClientProperties ? normally how a cube logging works is it will log as an entry on the log file when the cell is changed from "&...
by winsonlee
Wed May 30, 2012 10:15 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Cognos Express 10.1
Replies: 20
Views: 21855

Re: Cognos Express 10.1

just a guess, have you tried right click on the file "Run As" an administrator ?