Search found 261 matches

by BrianL
Mon Aug 22, 2016 2:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Java API - open connection error
Replies: 8
Views: 6840

Re: TM1 Java API - open connection error

The problem is that the TM1JavaApi jar file uses some IBM JRE specific code. I'm not aware of any workaround that would allow you to use the Oracle JRE instead. I don't know off the top of my head if IBM even supports the use of the TM1JavaApi with the Oracle JRE. If they do you could file a bug. In...
by BrianL
Mon Aug 22, 2016 1:48 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Java API - open connection error
Replies: 8
Views: 6840

Re: TM1 Java API - open connection error

Did you also grab an IF for FP5?

This looks like an issue I've seen where some IBM updates to enforce TLS 1.2 security only work with the IBM JRE and not with the Oracle JRE.

The IBM jre is provided as part of the install kit in the <path_to_install_location>/bin(64)/jre/ folder.
by BrianL
Thu Jul 28, 2016 8:03 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 10.2.2 FP6
Replies: 57
Views: 43828

Re: TM1 10.2.2 FP6

Looking at the fix list I think they only fixed the temporary subsets issue. We still can't use temporary views as data source. If they fixed that too that would be really awesome. I actually asked IBM support about it back then and was told these 2 issues will not be fixed until 10.3... I don't se...
by BrianL
Mon Jul 25, 2016 2:30 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: when chore fail
Replies: 8
Views: 4967

Re: when chore fail

Something like a major error or ProcessQuit/ProcessError call will stop executing the current TI process and with a single commit mode chore no further TI processes will execute.

So if you call ProcessQuit in the 2nd TI of the single commit mode chore, then the 3rd and 4th TI processes will not run.
by BrianL
Tue Jul 05, 2016 12:40 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Modify Feeder Rule need restart TM1 Service?
Replies: 6
Views: 4787

Re: Modify Feeder Rule need restart TM1 Service?

Once a cell is fed it will remain fed until either the server is restarted or the cube unloaded. Just to add to what qml stated, this applies if you're NOT using PersistentFeeders. If PersistentFeeders are enabled you'd need to both delete the .feeder file(s) AND restart the server to remove fed ce...
by BrianL
Fri Jul 01, 2016 5:11 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Turn off new breakback functionality in TM1 9.5.2?
Replies: 17
Views: 9909

Re: Turn off new breakback functionality in TM1 9.5.2?

Have you tried both the "Allow Spreading" as well as the "Consolidation TypeIn Spreading" capabilities?

I believe "Allow Spreading" is the only capability that can be denied to an admin.
by BrianL
Fri Jul 01, 2016 1:15 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Turn off new breakback functionality in TM1 9.5.2?
Replies: 17
Views: 9909

Re: Turn off new breakback functionality in TM1 9.5.2?

What version of TM1/TM1Web are you running? According that link from IBM, capabilities were added in 10.2.2 FP1. Are you having problems restricting spreading in TM1Web cubeviews, websheets, or both?
by BrianL
Wed Jun 29, 2016 12:45 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: ProcessError - How to output custom Error in the Logfile?
Replies: 7
Views: 7742

Re: ProcessError - How to output custom Error in the Logfile?

LogOutput was introduced in 10.2.2 FP1 which has been out since 2014, so if you have any fixpacks for 10.2.2 you should be able to use this function. If you are running a version of TM1 that has this function, could you provide us with an example of how you're trying to call the function and what yo...
by BrianL
Tue Jun 21, 2016 1:35 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Server freezes in SaveData
Replies: 5
Views: 4499

Re: Server freezes in SaveData

While I haven't heard of this exact problem, is this network storage that's being written to in prod? Theoretically at least the large file write could saturate that network connection and prevent any of those operations you're describing. Maybe IT could check if a direct console login is also froze...
by BrianL
Fri Jun 10, 2016 12:25 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Executing processes from a Master Process
Replies: 10
Views: 8393

Re: Executing processes from a Master Process

I don't see anything wrong with this code. One note to make is that Synchronized() takes an arbitrary string name, and doesn't require the name of an existing object on the server. While I can reproduce with 10.2.2 FP5, There's a chance this is related to the combination of Lock.Exception logging an...
by BrianL
Sat Jun 04, 2016 3:09 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Executing processes from a Master Process
Replies: 10
Views: 8393

Re: Executing processes from a Master Process

That's the first time I've heard of the Synchronized() function crashing. It's been my experience that IBM takes crash issues seriously but YMMV.
by BrianL
Fri Jun 03, 2016 4:32 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Executing processes from a Master Process
Replies: 10
Views: 8393

Re: Executing processes from a Master Process

Just to add to what Alan said - The problem is that when you call RunTI you are creating something which is not part of the chore or set of called processes, as the case may be. Sure, you are calling it from a process BUT RunTI creates its own connection to the server, and then does its own updates....
by BrianL
Wed May 25, 2016 5:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 and hard page faults
Replies: 6
Views: 4425

Re: TM1 and hard page faults

The page file and all associated paging operations are completely managed by the operating system. That being said, there is a tm1s.cfg parameter (LockPagesInMemory) you can use to get TM1 to instruct windows to never page out memory to disk. This option can make out of memory crashes more likely si...
by BrianL
Wed May 18, 2016 3:19 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 API string limit
Replies: 5
Views: 3334

Re: TM1 API string limit

Yeah, it's a strange issue. While I have no VBA experience, I don't see anything that looks wrong in your code. All the TM1 API calls match what I'd expect to see in the C API. On the other hand, I've seen lines longer than 1024 characters in a TI created in architect which indicates it's not some f...
by BrianL
Wed May 18, 2016 2:48 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 API string limit
Replies: 5
Views: 3334

Re: TM1 API string limit

The only limit I'm aware of is that TM1ValString can only create a string with length less than 65535.

You could always iterate and output PrologLines and hArray to verify they contain the expected data.
by BrianL
Tue May 17, 2016 9:41 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Disable logging specific TI process in tm1s-log.properties
Replies: 33
Views: 20961

Re: Disable logging specific TI process in tm1s-log.properties

Looks like 'Threshold' filtering is unavailable due to a (old) bug in log4cxx https://issues.apache.org/jira/browse/LOGCXX-28 Since there is a fix available you might be able to file a bug with IBM and push them to apply the fix. As for the other 'Filter' options in log4j/log4cxx being unavailable w...
by BrianL
Fri May 13, 2016 5:45 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Connecting to TM1 through VBA
Replies: 7
Views: 6105

Re: Connecting to TM1 through VBA

First, I agree with Tomok. You'll probably be better served by the VBA macros installed with the perspectives or cafe clients. Since you are trying to hardcode credentials into your source, have you looked at using TM1SystemServerConnectWithCAMNamespace instead? The CAM passport can be thought of as...
by BrianL
Fri May 13, 2016 5:25 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Problem updating cube cells using TM1 REST API
Replies: 1
Views: 2910

Re: Problem updating cube cells using TM1 REST API

At a quick glance I'd assume it's because you are sending a single value and not an array containing a single value in the request body. http://www.ibm.com/support/knowledgecenter/SS9RXT_10.2.2/com.ibm.swg.ba.cognos.tm1_rest_api.10.2.2.doc/t_tm1_rest_api_cellsets.html%23dg_tm1_odata_update_single_ce...
by BrianL
Fri May 13, 2016 5:20 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Disable logging specific TI process in tm1s-log.properties
Replies: 33
Views: 20961

Re: Disable logging specific TI process in tm1s-log.properties

Have you tried using an appender other than the SharedMemoryAppender? It's not a standard log4cxx appender and might not implement the threshold setting.
by BrianL
Wed Apr 27, 2016 2:41 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How to cancel a thread that cannot be cancelled in TM1 Top
Replies: 25
Views: 21940

Re: How to cancel a thread that cannot be cancelled in TM1 Top

Not to be a Debbie Downer, but has behavior been replicated more than once? Since the only document I can find from IBM that makes an attempt at defining IdleConnectionTimeOut states the parameter only applies to idle client connections, I'm a bit skeptical that this has any impact on thread cancell...