Search found 9 matches

by SirDuke
Sun Jul 28, 2013 8:32 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API TM1ServerMessageLogOpen parameters?
Replies: 2
Views: 2425

Re: TM1API TM1ServerMessageLogOpen parameters?

Thanks Alan I went the second route The other, and this is what I would do, is to assume that the arguments are likely to be similar to those of the function which opens the transaction log.... And your assumptions turned to be correct. It seems there are 3 params, hPool, hServer, hSomething of type...
by SirDuke
Sun Jul 28, 2013 8:24 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API, TM1ServerLogOpen sFlagFilter parameter
Replies: 2
Views: 2477

Re: TM1API, TM1ServerLogOpen sFlagFilter parameter

Thanks Alan I may be wrong and would be happily corrected if I am but I believe that the sFlagFilter is intended only for use when you use the TM1ServerLogSetFlagString API function to add a flag yourself. That was also my first thought, which turned out to be incorrect, at least per 9.5.2. I did a ...
by SirDuke
Sat Jul 27, 2013 1:13 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API TM1ServerMessageLogOpen parameters?
Replies: 2
Views: 2425

TM1API TM1ServerMessageLogOpen parameters?

Hello I'm trying to process server message log. Per the documentation bellow I should use TM1ServerMessageLogOpen . Does anyone knows proper declaration of the function and/or parameter(s) usage? I'm especially interested in filtering it by a date range. Many tanks The function TM1ServerMessageLogOp...
by SirDuke
Sat Jul 27, 2013 1:05 pm
Forum: Free And Open Source Tools
Topic: Useful TM1 language highlighter for Notepad ++
Replies: 13
Views: 88921

Re: Useful TM1 language highlighter for Notepad ++

Sorry to re-open such old thread with a dumb question :roll:

How do you use the notepad++ for TI editing? Are you copy/pasting related TI's tab all the time? Or are you modifying the *.pro file directly and somehow forcing tm1 server to reload it? Or am I completely missing something???
by SirDuke
Sat Jul 27, 2013 12:58 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API, TM1ServerLogOpen sFlagFilter parameter
Replies: 2
Views: 2477

TM1API, TM1ServerLogOpen sFlagFilter parameter

Hello I'm trying to process servers log(s) via TM1API. Everything seems to work almost fine. Just can not find a way how to filter log records on element names (like Architect allows to do when you select a particular cube). I guess this is somehow driven by the last parameter ( sFlagFilter ) of TM1...
by SirDuke
Fri May 31, 2013 5:16 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API how to find out if cell is updatable?
Replies: 5
Views: 4830

Re: TM1API how to find out if cell is updatable?

jrizk wrote:The value TM1ValIndexGet in b. (above) returns a value of 1 to 9. Anything other than a 9 indicates the cell is NOT updateable.
jrizk: it works like a charm, many thanks again!!!
by SirDuke
Fri May 31, 2013 4:51 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API how to find out if cell is updatable?
Replies: 5
Views: 4830

Re: TM1API how to find out if cell is updatable?

...That's maybe a long way of saying that "writeable" isn't a property of an array, only of an individual cell.... By all means. I meant if there would be function to return array of flags (for each cell), likewise there is TM1ViewArrayValueByRangeGet to return array of values (for each c...
by SirDuke
Fri May 31, 2013 1:19 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API how to find out if cell is updatable?
Replies: 5
Views: 4830

Re: TM1API how to find out if cell is updatable?

Many many thanks jrizk, I'm going to implement this.
Still curious if there is another undocumented function to give me such flag for whole viewarray though
by SirDuke
Thu May 30, 2013 10:11 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1API how to find out if cell is updatable?
Replies: 5
Views: 4830

TM1API how to find out if cell is updatable?

Hello I'd like to render a cube slice using native C++/VB6 TM1 API. Everything seems more or less "straighforward". I can get the cell values from ViewArray (using either TM1ViewArrayConstruc=>TM1ViewArrayValueByRangeGet or TM1GetViewByName . However I'm scratching my head how to find out ...