Page 1 of 1

Set Cube Security in TI

Posted: Thu Jun 02, 2011 3:43 pm
by jim wood
Guys,

I have been able to set element security within TI but I can't find a command to set sube security for groups wihtin in TI. Is this possible. I'm using a subset of the security groups as the source for TI,

Jim.

Re: Set Cube Security in TI

Posted: Thu Jun 02, 2011 4:31 pm
by qml
Why don't you try using CellPutS to write straight to the }CubeSecurity cube?

AFAIK there is no TI function CubeSecurityPut() or anything like that.

Re: Set Cube Security in TI

Posted: Thu Jun 02, 2011 4:47 pm
by tomok
qml wrote:AFAIK there is no TI function CubeSecurityPut() or anything like that.
I don't think you need it. Although I have never used it like this, the following syntax should work:

ElementSecurityPut('WRITE', '}Cubes', CubeName, GroupName);

Re: Set Cube Security in TI

Posted: Thu Jun 02, 2011 5:17 pm
by jim wood
I'll try that tomok thanks. I don't want to use either rules or writing directly to the control cubes as both of them requires a security refresh. With the model I'm working on that would mean too much down time,

Jim.

Re: Set Cube Security in TI

Posted: Thu Jun 02, 2011 6:56 pm
by Alan Kirk
jim wood wrote:I'll try that tomok thanks. I don't want to use either rules or writing directly to the control cubes as both of them requires a security refresh. With the model I'm working on that would mean too much down time,

Jim.
It's not been my experience that writing directly to the security cubes requires a security refresh; indeed that's the way that I usually manage it. The only time I've had to do that is for the one dimension which has security set by rules. If I change the rules, I need to do a refresh. If I punch the values into the cells on non-rules-based cubes, I don't; it takes effect immediately.

Re: Set Cube Security in TI

Posted: Thu Jun 02, 2011 7:06 pm
by jim wood
I'll try both methods then. I'll try CellPut first,

Jim.