Search found 11 matches

by mykill
Mon Feb 06, 2017 1:45 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 TI How to trim out extra space from text
Replies: 2
Views: 2810

Re: TM1 TI How to trim out extra space from text

Code: Select all

NumbertoString(Tnum);
should work.
by mykill
Mon Apr 14, 2014 11:34 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error message in TM1 WEB 10.2
Replies: 8
Views: 5898

Re: Error message in TM1 WEB 10.2

IF 3 will solve the issue.

many thanks Gabor.

regards
Michael
by mykill
Wed Apr 02, 2014 3:29 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error message in TM1 WEB 10.2
Replies: 8
Views: 5898

Re: Error message in TM1 WEB 10.2

Found the issue.

If you copy a value in, the cursor will jump some cells to the right. Is this cell a hidden cell, the error message is triggert.
by mykill
Wed Apr 02, 2014 12:10 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error message in TM1 WEB 10.2
Replies: 8
Views: 5898

Error message in TM1 WEB 10.2

Dear all, I get an error message in TM1 Web 10.2 (latest fixpack) if I click in an input cell or try to copy a value in. --- "nodeType" is null or not an object --- I have to use Internet Explorer 8 maybe thats the cause. It happens only in some of the cells on the websheet. Its an ordinar...
by mykill
Thu Jul 19, 2012 1:09 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Counter in while loop
Replies: 13
Views: 10743

Re: Counter in while loop

It should be a double Expand. The inner one to get the name and the outer one to get the value.
by mykill
Tue Apr 13, 2010 1:14 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How to call relative proportional spread function by Macro!
Replies: 8
Views: 8251

Re: How to call relative proportional spread function by Macro!

There is a Excel 4 macro function called "DBPROPORTIONALSPREAD(Number;String;String;....)".

maybe you can try this one.
by mykill
Thu Mar 25, 2010 12:22 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How has the locking model changed?
Replies: 18
Views: 14174

Re: How has the locking model changed?

David Usherwood wrote: Also....
Why would you _not_ want calculated values to be cached?!?! What would the point of easy updates if all calculations took ages, every time?
In a planning system every time you change data - the cache becomes invalid. Sometimes (many CPU cores) it can be faster to calculate every time.
by mykill
Thu Mar 18, 2010 11:12 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How has the locking model changed?
Replies: 18
Views: 14174

Re: How has the locking model changed?

We have the same situation. were is a new parameter: InfiniteThresholdForSingleCellStorage. The idea is to turn off the cache so reads and writes can happen at the same time. I can not test it, because we are still using 9.1 SP3 but it should work with TM1 9.0 SP3 U9, 9.4.1 FP3 and 9.5. Hotfix 4 for...
by mykill
Thu Mar 11, 2010 1:08 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Rule using ELPAR
Replies: 6
Views: 11194

Re: TM1 Rule using ELPAR

hi dan, try something like this: ['dimTier':'Non Tier Item', 'dimCSRPeriod':'07 CTD'] = N: IF(DB('cbmCSRWBS', !dimProject, !dimCSRWBS, '07', !dimYear) = 0, ['dimTier':'Non Cost Centre Item', 'dimCSRPeriod':'07 CTD'], IF(ATTRS('dimCSRWBS', !dimCSRWBS, 'Dummy') @= 'True' , DB('CubeName', ELPAR('dimCSR...
by mykill
Wed Jun 17, 2009 11:33 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 API - Simple Question - No Answer
Replies: 10
Views: 8447

Re: TM1 API - Simple Question - No Answer

I did something in the past. I checked the number of cubes on the server. If I got an answer the server is still up. I had to do the check asynchronous (ActiveX.exe is your friend), because if the server is hanging you are not able to react. This is my check: vhCubeCount = TM1ObjectListCountGet(hPoo...