Page 2 of 2
Re: TM1 10.2.2 released (or not)
Posted: Thu May 22, 2014 7:08 pm
by tomok
Michel Zijlema wrote:New samples are available
The Proven Techniques is a new sample database that installed by default. The GO_Scorecards sample database is also now installed by default.
Has anyone seen any documentation behind the cubes on the Proven_Techniques server? I can reverse engineer to see what they've done but having a little documentation as a head start would be nice.
Re: TM1 10.2.2 released (or not)
Posted: Thu May 22, 2014 8:23 pm
by dr.nybble
Plunge pool wrote:Alan Kirk wrote:
Thanks for that. Not quite what I was expecting either, but it'll require some exploration time.
So stupid question....does this mean that a TI Process can call and run a Java application? Is that what I am hearing?
Yes. But even more, the Java code has access to all of the same functions that a TI process does, plus a few more to enable the same logic that occurs when moving from Prolog -> Metadata -> Data -> Epilog.
So you now have a "real" language to program in (with useful data structures like lists, maps, sets, etc.), debugging capabilities, and access to the vast array of Java libraries.
Re: TM1 10.2.2 released (or not)
Posted: Fri May 23, 2014 8:34 pm
by Alan Kirk
dr.nybble wrote:So you now have a "real" language to program in
Well, we have
Java, anyway.

Re: TM1 10.2.2 released (or not)
Posted: Fri May 23, 2014 10:09 pm
by PlanningDev
Plunge pool wrote:So stupid question....does this mean that a TI Process can call and run a Java application? Is that what I am hearing?
Yes, you can now call java functions in TI. We were able to use Eclipse during the beta to create callable Java classes. They basically work like your existing TI functions but there is a special prefix when referencing them. Things like cleaning up special characters, string searching, etc. can be easier to do in Java. Plus Java opens up a quite a lot of capability such as interfacing with Cognos BI through the SDK or other Web Services etc.
Re: TM1 10.2.2 released (or not)
Posted: Mon May 26, 2014 12:18 pm
by Kreont
Hi,
It is true that there is no way of upgrade from tm1 ver.10.2.1 (with latest fixpack) to ver 10.2.2?
On site fount only this "Upgrading from Cognos TM1 version 10.2.0 to version 10.2.2 requires a full manual uninstall, and then a full installation of the new version."
http://www-01.ibm.com/support/knowledge ... _1022.html
But if i have ver. 10.2.1, what to do?
Re: TM1 10.2.2 released (or not)
Posted: Wed May 28, 2014 9:25 am
by Steve Vincent
Cry?
I'm facing the same.
Re: TM1 10.2.2 released (or not)
Posted: Wed Jun 04, 2014 9:19 pm
by Steve Rowe
Not at all familiar with Java, anyone got any pointers to good training? Are there multiple flavours of Java?
Cheers,
Re: TM1 10.2.2 released (or not)
Posted: Wed Jun 04, 2014 10:44 pm
by Alan Kirk
Steve Rowe wrote:Not at all familiar with Java, anyone got any pointers to good training?
It's not free (nor is it horrendously expensive), but if you're looking for "from the ground up" training it's hard to go past
Lynda.com. The best part of it is that there are different levels of courses in most topics as well as a few specialist sub-courses, so you can cherry pick what you need.
Java is no exception to this. If you're really completely new to Java it's worth getting the Premium subscription which includes source files so that you don't have to write all of the code from scratch as you follow along. You can subscribe either by month or year.
I've done a lot of Lynda courses for things like Photoshop and they're extremely comprehensive.
Steve Rowe wrote: Are there multiple flavours of Java?
How can there be, it's "write once, debug everywhere", remember? Every implementation of Java uniformly tastes like pi... er, I mean, like American beer.
In all seriousness though, if you stick to downloading the Java SDK from Oracle and use the Eclipse development tool (if one may bestow such a grand title on it) you're pretty safe.
(Edit: I just took a look at the Lynda course; it includes episodes on how to install both the JDK and Eclipse. It deals mostly with Java 6 and 7 while the current one is 8, but there shouldn't be huge changes.)
Re: TM1 10.2.2 released (or not)
Posted: Thu Jun 05, 2014 8:53 pm
by Steve Rowe
Cheers Alan, thanks for saving me a load of leg work (and looking like a lemon walking around with "Java for dummies" on my commute!).
Re: TM1 10.2.2 released (or not)
Posted: Tue Jun 10, 2014 12:19 am
by upali
Being someone who works primarily on Java and TM1, I couldn't be more excited with the ability to finally put the Java API to good use. I just don't get it why there is so much Java bashing here...
Re: TM1 10.2.2 released (or not)
Posted: Tue Jun 10, 2014 3:20 am
by Alan Kirk
upali wrote:Being someone who works primarily on Java and TM1, I couldn't be more excited with the ability to finally put the Java API to good use. I just don't get it why there is so much Java bashing here...
Because it's a cr@p language for anyone who works primarily in Windows. The case sensitivity is a pain in the @$$. The endless sea of braces are nothing more than syntax errors waiting to happen which get in the way of you getting from point A to point B in the fastest possible time. It doesn't dovetail neatly into Excel. Don't even get me started on how painful writing a
decent GUI is compared to .Net. The stupidity of the Switch Case syntax with the need to explicitly Break once you have a match is brain dead and another bug-waiting-to-happen, though at least Java 7
finally let you use the thing with strings. (Yes, I'm aware that this is a hangover from C languages. It remains a stupid piece of language design, whatever its provenance.) It's slow, as anyone who's seriously contemplated slamming their head into a wall while waiting for Performance Muddler to load can attest despite highly dubious claims that "Oh yeah, Java is as fast as machine code now". It's security leak prone to the point that there are still security experts who say "If you don't need Java, don't install Java". Cheezes, for once even
Apple and I agree on something, with them having dumped the inclusion of the JRE in Lion, which I doubt was done for no particular reason.
I just realised that I could actually sit here typing on this subject for the rest of the day, but it may be harmful to my blood pressure.
I'll concede that Eclipse makes it slightly less painful to work with, but I still hate the language with a passion and use it as little as possible.