Search found 18 matches

by jwilkins
Mon Oct 31, 2016 4:40 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: 10.2.2 Backward Compatibility
Replies: 8
Views: 6569

Re: 10.2.2 Backward Compatibility

It might be worth noting that the SSL version was changed in FP6 and by default older clients (using the older SSL version) are blocked from connecting. You can enable support for older clients with the SupportPreTLSv12Clients tm1s.cfg parameter. http://www-01.ibm.com/support/docview.wss?uid=swg2704...
by jwilkins
Fri Sep 30, 2016 8:21 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Issues with FP 6 and Client app access
Replies: 2
Views: 2555

Re: Issues with FP 6 and Client app access

FP 6 switched to using TLS 1.2 for communication and rejects all pre TLS 1.2 communication. You need to either update the clients to FP 6 as well, or enable pre-TLS 1.2 support. To support old clients set the parameter SupportPreTLSv12Clients to T in your tm1s.cfg file. Here's the relevant documenta...
by jwilkins
Wed Sep 21, 2016 12:58 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: HELP : Problem add element to a dimension
Replies: 3
Views: 2919

Re: HELP : Problem add element to a dimension

a) Your dimension is fine but looks odd due to the sort order of the elements. Issue a DimensionSortOrder on an empty statement or put the values into }DimensionProperties. See elsewhere on this Forum for that. This is the source of your confusion. The "duplicated" elements are not duplic...
by jwilkins
Fri Sep 16, 2016 1:03 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Default Element Security to 'Read'
Replies: 5
Views: 4250

Re: Default Element Security to 'Read'

Assuming the desired out come is as stated (that "the entire dimension has 'READ' privileges") you would be much, much better off simply setting each of the cubes that uses the ID dimension to 'READ'. This is effectively the same and I'm not sure why it didn't hit me before now. If you do ...
by jwilkins
Thu Sep 15, 2016 8:50 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Default Element Security to 'Read'
Replies: 5
Views: 4250

Re: Default Element Security to 'Read'

If your goal is to secure data in cubes that use the ID dimension, then dimension security isn't actually taken into account. Cube, element and cell security are all that are considered. Likely the reason your element security rule did not work is the point that Tom mentioned. After you update the I...
by jwilkins
Tue Aug 30, 2016 2:10 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CellSecurity Cube question
Replies: 10
Views: 7544

Re: CellSecurity Cube question

Cell Security takes a sort of priority over other types of object security and allows you to override more restrictive access given by element or cube security. Minor correction: I don't believe cell security can override cube security. So if cube security is READ and cell security is WRITE, the re...
by jwilkins
Wed Aug 17, 2016 6:16 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Banner Icon missing 07 Excel
Replies: 1
Views: 1871

Re: TM1 Banner Icon missing 07 Excel

Is the Excel installation 64 bit as well? 64 bit perspectives only works with 64 bit Excel.

I'm not sure that the symptoms line up with that issue, but it's worth checking.
by jwilkins
Fri Jul 08, 2016 6:47 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Security Significance
Replies: 2
Views: 3592

Re: Dimension Security Significance

Setting a dimension to NONE prevents that group from opening any cube using that dimension in Cube Viewer. The other rights have to do with editing the dimension structure and attributes. ADMIN Add/Remove attributes Create public subsets (from READ elements) but NOT delete them (requires the user to...
by jwilkins
Wed Jul 06, 2016 9:55 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Can I totalise memory used by Dimensions via TI?
Replies: 8
Views: 6580

Re: Can I totalise memory used by Dimensions via TI?

Got it. I set it up using Java... for (int iDimIndex = 1; iDimIndex < lTM1Server.getDimensionCount().getInt(); iDimIndex++) { lTM1Dim = lTM1Server.getDimension (iDimIndex); System.out.println ("Dimension Name: " + lTM1Dim.getProperty (TM1Properties.ObjectName).getString()); System.out.pri...
by jwilkins
Thu Jun 30, 2016 9:27 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Managing user rights
Replies: 3
Views: 2697

Re: Managing user rights

I'm a software engineer at Motio and we're currently working on a feature for our TM1 admin tool that could be helpful. The goal was to make debugging security issues as easy as possible. The feature is currently in beta but if you want to give it a spin and see if it helps, send me a PM and I'll ge...
by jwilkins
Thu Jun 16, 2016 9:17 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Unable to execute tm1runti with TI parameters in AIX environment
Replies: 6
Views: 5244

Re: Unable to execute tm1runti with TI parameters in AIX environment

I believe he means the spaces around the "=". As in
-pwd password tiparam=value

and if value happened to be the string 'value with spaces' you would have to quote the value. As in
-pwd password tiparam="value with spaces"
by jwilkins
Wed Jun 08, 2016 2:15 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: With which version of Java is TM1 10.2 web developed?
Replies: 7
Views: 7633

Re: With which version of Java is TM1 10.2 web developed?

I don't know of any official documentation that explicitly says the Java version. However this article may help you locate the jre folder. https://www.ibm.com/support/knowledgecenter/en/SS9RXT_10.2.2/com.ibm.swg.ba.cognos.tm1_inst.10.2.2.doc/t_tm1_inst_tm1web_config_for_SSL.html?view=embed You can t...
by jwilkins
Wed Jun 08, 2016 11:49 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: With which version of Java is TM1 10.2 web developed?
Replies: 7
Views: 7633

Re: With which version of Java is TM1 10.2 web developed?

It looks like they use Java 1.7. Naturally, that's IBM Java 1.7.
java_version.png
java_version.png (34.09 KiB) Viewed 7619 times
by jwilkins
Thu Jun 02, 2016 12:08 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 TI Variable question
Replies: 9
Views: 5780

Re: TM1 TI Variable question

declanr wrote:The OP shows the error is seen in the data tab.
Ah, I must have glossed over that. Good catch. You are clearly much more observant than I am. :oops:
tomok wrote:but what I think he meant is that you can't build a variable in the prolog that is based off anything in the data source.
Exactly what I meant.
by jwilkins
Wed Jun 01, 2016 5:39 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 TI Variable question
Replies: 9
Views: 5780

Re: TM1 TI Variable question

If the code you're having an issue with is in Prolog or Epilog, the variables are not available as they happen before and after the datasource is processed.
by jwilkins
Wed Jun 01, 2016 2:13 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Zero Values on N Elements
Replies: 7
Views: 5277

Re: Zero Values on N Elements

You could define a rule along the lines of ['budget']=N:0; That would set all N elements to 0 for budget and because they are calculated, they would not be editable. But that's assuming you already have a C rule to calculate the budget for consolidations. Otherwise, all of the consolidations will ju...
by jwilkins
Mon May 23, 2016 8:27 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: data-input via TI Java-Extensions
Replies: 3
Views: 2987

Re: data-input via TI Java-Extensions

It would be helpful to say exactly what you're trying to accomplish. There may be another tool besides Java extensions that could help you achieve your goal.
by jwilkins
Tue Apr 26, 2016 2:33 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Process Security Assignment Vs }ProcessSecurity
Replies: 3
Views: 3951

Re: Process Security Assignment Vs }ProcessSecurity

Did you try doing a security refresh after writing the rule?

Rule-based security requires a refresh when the calculation changes. Manually setting the security through "Process > Security Assignment", on the other hand, does not require a refresh.