Search found 68 matches

by schlemiel29
Tue Dec 17, 2024 9:14 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Zero out with DBS on consolidated element
Replies: 7
Views: 10245

Zero out with DBS on consolidated element

Hi all, I have a cube with one dimension having all leaf elements and one "total" element. To zero out a slice I want to use DBS(0,"Cube", "Dim1", ...) This doesn't work. There is no error, simply nothing happens. I also tryied DBSW(0,"Cube", "Dim1",...
by schlemiel29
Tue Dec 17, 2024 8:35 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX to get all elements of a ParamCube
Replies: 5
Views: 6455

Re: MDX to get all elements of a ParamCube

OK, thanks. I realized that by simple try and error. So my solution is a cube with rules and then request that cube with checking values > 0. Unfortunatly I need a cube for every dimension with this filter feature.
by schlemiel29
Fri Dec 13, 2024 11:58 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX to get all elements of a ParamCube
Replies: 5
Views: 6455

Re: MDX to get all elements of a ParamCube

Yes, I already did. Example:

Code: Select all

{
  FILTER(
    TM1SUBSETALL([}KW_N_Von]),
    SUM(
      TM1SUBSETALL([}KW_N_Von]),
      IIF( 1 = 1, 1, 0 )
    ) > 0
  )
}
This also returns nothing. If I change "> 0" to "= 0" I get all elements. I have totally no clue!
by schlemiel29
Wed Dec 11, 2024 3:41 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX to get all elements of a ParamCube
Replies: 5
Views: 6455

MDX to get all elements of a ParamCube

I have a cube (}TM1Config_UserReportDimElements), where I store selections of the user. Because they can select multiple elements of a dimension, I have a dimension "}numbers" which only include number elements "1" ... "20". So I can store each element the user has has ...
by schlemiel29
Fri Dec 06, 2024 9:19 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: PAW functionality for preselecting (depending input selection)
Replies: 3
Views: 3099

Re: PAW functionality for preselecting (depending input selection)

Interestingly! But I didn't get it complete. So there is an attribute for }Clients, so each user has his own subset for elements of "products", right? But where is his selection in the report used? He selected "Departement 100" in this report, so how does this information influen...
by schlemiel29
Thu Dec 05, 2024 11:39 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: PAW functionality for preselecting (depending input selection)
Replies: 3
Views: 3099

PAW functionality for preselecting (depending input selection)

When selecting an element for a dimension, I like to restrict another dimension depending on this selection. So in TM1Web I use 100% Excel functionality. I create a subset or a c element which represents my first selection. Let's assume I selected a department (100). With this ID I had created at im...
by schlemiel29
Thu Dec 05, 2024 11:30 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subsetdefinition don't accept foreign Dimension
Replies: 7
Views: 3723

Re: Subsetdefinition don't accept foreign Dimension

If this is a dimension with all elements as N elements, a rule will always be a N rule, but as fast as a C rule, because it simply does the calculation for itself (one time) without further aggregation.
by schlemiel29
Thu Dec 05, 2024 10:30 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1Web-Report sync with PAW visuals?
Replies: 1
Views: 2340

TM1Web-Report sync with PAW visuals?

In PAW I have the option to sync controls with each other by dimensions. When I define a Report in Excel and upload it to TM1Web, I can also use this in PAW as a visual. But its values are not offered outside to syncronize them. I can save the selected elements in a special cube and make the other P...
by schlemiel29
Thu Dec 05, 2024 10:25 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subsetdefinition don't accept foreign Dimension
Replies: 7
Views: 3723

Re: Subsetdefinition don't accept foreign Dimension

@burnstripe: Yes, I also tried "[KW].CurrentMember.Name". So I didn't understand, what kind of data is
- CurrentMember.Name
- CurrentMember

I assumed they are simply strings, so if "202101" works, it should work with any kind of strings.
by schlemiel29
Thu Dec 05, 2024 10:22 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subsetdefinition don't accept foreign Dimension
Replies: 7
Views: 3723

Re: Subsetdefinition don't accept foreign Dimension

Oh, that's simple. I want a flat dimension (}KW_N) , so I don't need any special rule or feeders. Just take the data from another cube.
by schlemiel29
Wed Dec 04, 2024 8:46 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Saving and Reusing user settings
Replies: 14
Views: 18741

Re: Saving and Reusing user settings

Good to know, so I don't need to search for it. Thank you very much.
by schlemiel29
Tue Dec 03, 2024 11:37 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Saving and Reusing user settings
Replies: 14
Views: 18741

Re: Saving and Reusing user settings

Additional question:
Using Picklists in special cubes only offers me a simple dropdown list. How can I use the subset editor shown by SUBNM, which also has these filter functions for level, pattern and also hierarchical selection? In large dimensions a simple flat list will be terrible.
by schlemiel29
Tue Dec 03, 2024 10:02 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Stacked bars in Active Form
Replies: 0
Views: 5367

Stacked bars in Active Form

Hi All, I'm facing the following problem: I want a stacked bar chart using Excel. So no special functionality of PAW available. I have a number of periods, used for rows, and a number of materials used for columns. Both are defined by a dynamic Subset via MDX. So I need to put the materials in the c...
by schlemiel29
Tue Dec 03, 2024 7:55 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subsetdefinition don't accept foreign Dimension
Replies: 7
Views: 3723

Subsetdefinition don't accept foreign Dimension

Hi all, I discovered a strange behavior. I use a cube with dimensions, which have the same elements as the dimeniion in which I want to define a dynamic MDX based subset. So I have I dimension "KW" and a cube (}FILTER_KW_ORG) with 4 dimensions: }KW_N, }KW_N_Von, }KW_N_Bis and }FILTER_KW. T...
by schlemiel29
Wed Nov 27, 2024 4:14 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: DefineCalc on which version and apps available?
Replies: 8
Views: 7011

DefineCalc on which version and apps available?

Hi, I'm searching for an opportunity for the users to caculate their own aggregation. I read about UDC. But actually I'm using Perspectives, in future I will use PAFé. I tried DefineCalc as a function in an Excel report, but this functions seems to be unknown. I'm using version 2.0.9 (Server 11.8.02...
by schlemiel29
Wed Oct 30, 2024 2:30 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Sparce cubes with rules
Replies: 1
Views: 2530

Sparce cubes with rules

I have several cubes with very limited data on a very large number of elements. So there is an information, how much output of a product (# > 10.000) can a specific maschine (# > 5.000) produce in one time period. [Maschine][Product] <> 0 is only set for 1 or 2 products. Then I have costs per maschi...
by schlemiel29
Tue Oct 01, 2024 10:43 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Multiple dynamic Areas in one report
Replies: 1
Views: 5031

Multiple dynamic Areas in one report

Hi all, I have a report which I should rebuild using TM/1. It is a dynamic area showing some products and their volumes. If I click on one of them (maybe with a value writing back a "1" to a helper cube) in another dynamic area below the one above some more details should be listed. Is it ...
by schlemiel29
Fri Aug 30, 2024 9:54 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Command rejected - TI debugging is disabled in tm1s.cfg
Replies: 1
Views: 2256

Command rejected - TI debugging is disabled in tm1s.cfg

Hi, I just wanted to use the TI Debugger in PAW. When I first started the "DEBUG" run, I got the message: Command rejected - TI debugging is disabled in tm1s.cfg OK, with some search I added EnableTIDebugging=true later on EnableTIDebugging=T to tm1s.cfg of the data model. Then I restartet...
by schlemiel29
Tue Feb 20, 2024 12:30 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Different row heights in reports?
Replies: 1
Views: 1289

Different row heights in reports?

Hi, I try to build an nice looking input dialog. So I want (Excel-Style) an input cell and a very small row below to have a delimiter for the input fields below. Unfortunately all settings belonging to row height in the pattern rows are ignored. The height of the first row in the data area is used a...
by schlemiel29
Tue Feb 20, 2024 7:54 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Drilldown in reports by user
Replies: 2
Views: 1139

Re: Drilldown in reports by user

Wow.
Lets assume, I have a simple active report created by the View builder in Excel. Accounts in the rows (row header).
How could I react to a double click on an account name to do some changes, e.g. drill down or drill down?