Search found 3032 matches

by Wim Gielis
Mon Jul 24, 2017 11:11 pm
Forum: Useful code, tips and tricks
Topic: TM1 Challenge
Replies: 5
Views: 17146

Re: TM1 Challenge

Thank you Pandinus for your reaction. I wrote the code (unpolished but it works fine :-) ) and if someone is interested, let me know. I doubt that there will be some interest given that TI code that I find useful (like http://www.tm1forum.com/viewtopic.php?f=21&t=13373 and http://www.tm1forum.co...
by Wim Gielis
Mon Jul 24, 2017 9:39 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Concatenated string with Expand Function
Replies: 16
Views: 17944

Re: Concatenated string with Expand Function

Hi I would go for: SubsetElementInsert( vDimName, vSubsetName, vrollinggroup1, 0 ); SubsetElementInsert( vDimName, vSubsetName, vrollinggroup2, 0 ); SubsetElementInsert( vDimName, vSubsetName, vrollinggroup3, 0 ); SubsetElementInsert( vDimName, vSubsetName, vrollinggroup4, 0 ); SubsetElementInsert( ...
by Wim Gielis
Fri Jul 21, 2017 6:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Concatenated string with Expand Function
Replies: 16
Views: 17944

Re: Concatenated string with Expand Function

Hello, You can use: vcount=1; While(vcount<=12); SubsetElementInsert(vDimName, vSubsetName, Expand('%vrollinggroup'|NumberToString(vcount) |'%'), vcount); Vcount=vcount+1; END; Another topic that uses Expand: http://www.tm1forum.com/viewtopic.php?f=3&t=13333&p=65616&hilit=Expand#p65616 Wim
by Wim Gielis
Thu Jul 20, 2017 11:43 pm
Forum: General
Topic: Upcoming server migration
Replies: 15
Views: 96024

Re: Upcoming server migration

Thank you Martin
by Wim Gielis
Fri Jul 14, 2017 4:26 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Is it still worth working on a cube auto promotion tool?
Replies: 11
Views: 8182

Re: Is it still worth working on a cube auto promotion tool?

JulianS wrote:I'm gonna leave the VBA alone,
Is it a treeview that you use in the Userform ?
That object does not play nicely in several versions of Excel, or Excel 64 bits.
I know that Excel MVP Jan-Karel Pieterse offers a free alternative with classes:
http://www.jkp-ads.com/articles/treeview.asp
by Wim Gielis
Tue Jul 11, 2017 3:56 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: JAVA API get view array with header???
Replies: 6
Views: 3775

Re: JAVA API get view array with header???

Personally I haven't used that API yet so it would be difficult to give assistance.
by Wim Gielis
Tue Jul 11, 2017 3:55 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subset present but with no code in its dimension process
Replies: 6
Views: 3360

Re: Subset present but with no code in its dimension process

Hello srp, Regarding the subset, can you open up the relevant *.sub file in the data directory ? Go to the folder of the subsets of the dimension, and use Notepad for example to open the *.sub file. With parameter 11, do you see a timestamp ? Regarding the other question, it's better to start a new ...
by Wim Gielis
Mon Jul 10, 2017 5:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subset present but with no code in its dimension process
Replies: 6
Views: 3360

Re: Subset present but with no code in its dimension process

Hello there, You need to look for the functions SubsetCreate and SubsetCreateByMDX, possibly with a text editor like Notepad++. Are there other processes that are executed that contain such code ? You're sure that you can create the subsets with a certain TI because before the process runs they do n...
by Wim Gielis
Mon Jul 10, 2017 6:07 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Performance modeler Login issue
Replies: 8
Views: 6276

Re: TM1 Performance modeler Login issue

krithika331 wrote:
AllowSeparateNandCRules=T
DistributedPlanningOutputDir=C:\Program Files\ibm\cognos\tm1_64\samples\tm1\PlanSamp\tunit
ForceReevalutionOfFeedersForFedCellsOnDataChange=T
Could it be a typo? You're missing an a.

ForceReevaluationOfFeedersForFedCellsOnDataChange
by Wim Gielis
Mon Jul 10, 2017 12:33 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

Dear Julian, It's humble that you help others, we all do. Not only during the day, also in the evening and during weekends. However, your negative comments addressing me personally in this topic are very unprofessional and even low-level. I leave it to the moderators to decide how to rate these pick...
by Wim Gielis
Sun Jul 09, 2017 9:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

I have also noticed your negativity towards users Could it possibly because its easier to be be a critic than a creator? JulianS, Always funny, people like you. You registered 3 days ago, so please make comments only once you get to know the environment a little bit. And do learn some "netique...
by Wim Gielis
Sat Jul 08, 2017 9:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

Jules,

Thank you for your contribution.
Why do you use the destination cube as the data source ?
To me it makes more sense to use the input cube as the data source. With an extra measure (Treated, 0 or 1) and a simple loop as explained above, this is not difficult to do.
by Wim Gielis
Fri Jul 07, 2017 2:11 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

It complicates matters if StartDate and/or FinishDate is empty, but if they were both non-empty or both empty, then this will work: Create a view on Cube1 in the Prolog section of the Advanced tab. Select in the dimension Details on element StartDate. That way, you can loop over all non-zero StartDa...
by Wim Gielis
Fri Jul 07, 2017 11:26 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

If you compare strings these should be in the same format. For example: yyyymmdd on both sides of the inequality. Can you provide more information ? What business problem do you want to tackle ? Which cubes do you have ? Which dimensions ? Besides the looping, do you use a view for the data source o...
by Wim Gielis
Fri Jul 07, 2017 10:00 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CELLPUTN
Replies: 20
Views: 12638

Re: CELLPUTN

Dear friend, This is not an enhancement, so you are posting in the wrong subforum. You registered to this forum more than 3 years ago, so this should not be new to you. I assume this topic will be moved shortly. and im sure you cant do <= and => between strings. True, but you can use @<= and @=> whe...
by Wim Gielis
Fri Jun 30, 2017 7:34 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8090

Re: Delete Consolidated Elements

You can turn a dynamic subset into a static subset because you don't want to evaluate the expression anymore. That can improve performance.
by Wim Gielis
Thu Jun 29, 2017 5:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Error
Replies: 5
Views: 3083

Re: Error

Do you have a calculation rule at C level ?
by Wim Gielis
Thu Jun 29, 2017 5:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Security on Alias Set
Replies: 8
Views: 4252

Re: Security on Alias Set

Apologies, I did not answer the question and you can disregard my reply.