Search found 1015 matches

by qml
Thu Mar 24, 2011 1:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI Script need for copying data from Scenario to scenario
Replies: 3
Views: 2954

Re: TI Script need for copying data from Scenario to scenari

You do realise that generally speaking a TI script doing that in some other TM1 model would not work in your model? You can try and write this script yourself as it's the most basic of tasks for which TI can be used. If you don't feel you have enough skills for that then you probably should think of...
by qml
Thu Mar 24, 2011 9:49 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Chore that write to Security Cubes
Replies: 3
Views: 3149

Re: Chore that write to Security Cubes

You need to switch on Security Access for the process(es) that attempt to make any security changes. More on the subject here: http://publib.boulder.ibm.com/infocenter/ctm1/v9r4m1/index.jsp?topic=/com.ibm.swg.im.cognos.tm1_dg_dvlpr.9.4.1.doc/tm1_dg_dvlpr_id7301AllowingProcessestoModifySecurityDat.ht...
by qml
Wed Mar 09, 2011 12:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: executecommand() with batch files
Replies: 29
Views: 30329

Re: executecommand() with batch files

... or put " > C:\myfile.txt" at the end of your command to print anything the OS says to a text file.
by qml
Mon Feb 28, 2011 11:44 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Rule for Simple and String Elements in a Dimension
Replies: 1
Views: 1909

Re: Rule for Simple and String Elements in a Dimension

It is all described in the TM1 Rules Guide.

You should do something along these lines:

Code: Select all

['Scenario2'] = N: ['Scenario1'],
                S: ['Scenario1'];
by qml
Fri Feb 25, 2011 2:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI: Update subset after cube load
Replies: 2
Views: 2059

Re: TI: Update subset after cube load

The best approach is to create a Dynamic Subset with the following MDX code

Code: Select all

{TM1FILTERBYLEVEL( {TM1SUBSETALL( [Dimension] )}, 0)}
This subset will not need any maintenance, it will always be automatically up to date.
by qml
Fri Feb 25, 2011 1:14 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: macro to perform a 'page dbrw'
Replies: 4
Views: 2958

Re: macro to perform a 'page dbrw'

You can also consider creating a TI Process that would be called from your VBA for every data line (or column or cell etc), take the data you want to write to the cube (and all dimension elements too) passed as parameters and the actual writing to the cube can be done by the TI. I have employed this...
by qml
Fri Feb 25, 2011 9:54 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: macro to perform a 'page dbrw'
Replies: 4
Views: 2958

Re: macro to perform a 'page dbrw'

There are a number of ways to achieve that, the simplest one not even requiring a macro, just a flag cell and DBS formulas (maybe somewhere in a hidden area. Like that: =IF(FlagCell=1,DBS(...),0). The user would submit data by changing the flag value (manually, using a button, from a dropdown etc) a...
by qml
Fri Feb 18, 2011 12:14 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Rolling back the password for the user ADMIN
Replies: 4
Views: 6294

Re: Rolling back the password for the user ADMIN

I can't remember right now, but if you just delete the }ClientProperties cube, would that still erase all the users from the server? This should be enough to zero out all the passwords.
by qml
Fri Feb 18, 2011 10:56 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error: Prolog procedure line (3): Cube "MyCube" Not Found
Replies: 10
Views: 6623

Re: Error: Prolog procedure line (3): Cube "MyCube" Not Foun

I can't see any code that would remove / rebuild the cube, so it must be something else. Maybe you can go through your other chores/processes and search for anything like

Code: Select all

CubeDestroy('PROD_MARZE');
I really can't think of anything else right now.
by qml
Thu Feb 17, 2011 4:03 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: 9.5.1: Relative Proportional Spread Error
Replies: 2
Views: 2887

Re: 9.5.1: Relative Proportional Spread Error

Just a stab in the dark here, but maybe you are facing the problem of circular reference? TM1 would display the same error message (which does not help much!) if you tried to spread, say, a value from a parent to its child. Check if your reference element is not a parent of your target element.
by qml
Thu Feb 17, 2011 3:20 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error: Prolog procedure line (3): Cube "MyCube" Not Found
Replies: 10
Views: 6623

Re: Error: Prolog procedure line (3): Cube "MyCube" Not Foun

How many active chores do you have in your model? Is it possible for you to go through them and list all the processes involved? If there aren't too many, you could post the code in the Prolog, Metadata, Data and Epilog tabs of these processes so that we can help you pinpoint which other process del...
by qml
Mon Feb 14, 2011 3:44 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error: Prolog procedure line (3): Cube "MyCube" Not Found
Replies: 10
Views: 6623

Re: Error: Prolog procedure line (3): Cube "MyCube" Not Foun

It looks like the cube PROD_MARZE gets deleted outside of your process, so that when it gets executed it cannot find it and falls over on the first line of code. Are you aware of any other process in your environment that would be deleting this cube periodically?
by qml
Thu Feb 10, 2011 4:01 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding from an alias
Replies: 7
Views: 4669

Re: Feeding from an alias

But till now I was sure I had such an issue in one of former versions (definitely before 9.5), so I tried those days to type the aliases manually in the }ElementAttributes cube and they were there only till server restarting. After that they came back to blank. Now I am not so sure about it. On 9.5...
by qml
Fri Feb 04, 2011 1:43 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Security Control cubes
Replies: 8
Views: 5719

Re: Security Control cubes

Steve, You only need to feed your string cube (and security cubes are string cubes) if you use SKIPCHECK and you want to work with zero-supressed views. I wonder why you might need it in the first place. I would just write such rules with no SKIPCHECK and no FEEDSTRINGS and no FEEDERS. And yes, you ...
by qml
Tue Nov 30, 2010 1:40 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: SubsetCreatebyMDX workaround?
Replies: 4
Views: 2879

Re: SubsetCreatebyMDX workaround?

Just a stab in the dark here... Since you can refer to your subset when you already have it defined using the [dim_name].[subset_name] formula, how about trying to create a few nested subsets, making use of one another, sth along the lines of: {UNION( {[dim_name].[subset1]}, {[dim_name].[subset2]} )...