Search found 194 matches

by kenship
Sun Jun 13, 2021 3:02 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding calculated consolidated cell
Replies: 6
Views: 4943

Re: Feeding calculated consolidated cell

Great idea!

Will definitely try and report.

Thanks a lot!

Keneth

burnstripe wrote: Sun Jun 13, 2021 10:40 am Have you considered making % a consolidated element with $ as it's child. As long as there's no requirement to input % and it's always a calculation this is an option that'll remove the need for feeder statements.
by kenship
Fri Jun 11, 2021 8:19 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding calculated consolidated cell
Replies: 6
Views: 4943

Re: Feeding calculated consolidated cell

Hi Wim, Thanks for the response. Unfortunately the answer is yes. Basically the whole purpose is to get the % calculation on consolidated level only. In the example shown, I need the 43.53% and couldn't show it unless the % calculation is applied to all leaf elements. Kenneth Do you need to feed any...
by kenship
Fri Jun 11, 2021 6:21 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding calculated consolidated cell
Replies: 6
Views: 4943

Feeding calculated consolidated cell

Hi, I need some help in feeding a calculated consolidated cell. The attachment shows the test cube. A simple explanation of what I'm trying to do here: I'm trying to have % calculation based on "Change" divided by "Opening" but only on subtotal level. I tested feeders on detail l...
by kenship
Wed May 19, 2021 1:17 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Planning Analytics Performance Modeler license as ReadOnlyUser
Replies: 7
Views: 4566

Re: Planning Analytics Performance Modeler license as ReadOnlyUser

Thanks for the reply. I realized I used the wrong word "Modeler", the users are actually licensed as "Performance Management" user which means they are not admin. but regular user who can read and write data into TM1. Again I was wondering whether identifying a few of these users...
by kenship
Tue May 18, 2021 4:20 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Planning Analytics Performance Modeler license as ReadOnlyUser
Replies: 7
Views: 4566

Planning Analytics Performance Modeler license as ReadOnlyUser

Hi,

Can I assign user licensed under Performance Management to become ReadOnlyUser in }ClientProperties?

I currently have a few Local Explorer licenses to match ReadOnlyUser but wonder whether I can allow more.

Thanks!

Kenneth
by kenship
Thu May 06, 2021 2:08 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI create view for loading data into
Replies: 3
Views: 2877

Re: TI create view for loading data into

Thanks Tom and Wim. Just tested and realized I forgot to name the DataSourceCubeView. It works right after. To provide details, I was trying to put text to consolidated intersections based on certain criteria. There's no source data cube so to speak but I named the target cube as the source to get t...
by kenship
Wed May 05, 2021 2:59 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI create view for loading data into
Replies: 3
Views: 2877

TI create view for loading data into

Hi, I have done many TI to transfer data based on source view and target view. For all of them I configure dimensions in the source cube for the data I need to transfer. For the target cube, I create target subsets, target views to clear data, data will be loaded based on elements in the source cube...
by kenship
Thu Oct 08, 2020 6:41 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI not writing string value to consolidated element
Replies: 7
Views: 2719

Re: TI not writing string value to consolidated element

Looks like it's the ViewExtractSkipCalcsSet that needs to be inserted.

Thanks very much!
ascheevel wrote: Thu Oct 08, 2020 6:16 pm Can you add the below items to your prolog below the other ViewExtract... declarations and re-test?

Code: Select all

ViewExtractSkipCalcsSet('tDemo', 'tView', 0);
ViewExtractSkipRuleValuesSet('tDemo', 'tView', 0);
by kenship
Thu Oct 08, 2020 6:03 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI not writing string value to consolidated element
Replies: 7
Views: 2719

Re: TI not writing string value to consolidated element

Hi all, For simplicity, I created a very small cube to show what I'm trying to accomplish. The cube includes: DimA - (A-TOTAL)->A1, A2 DimB- (B-TOTAL)->B1, B2 Dim_m- $, Description What I'm trying to do is to put string into "Description" for consolidated elements (A-TOTAL), (B-TOTAL) when...
by kenship
Thu Oct 08, 2020 3:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI not writing string value to consolidated element
Replies: 7
Views: 2719

Re: TI not writing string value to consolidated element

Make sure your TI source view isn't skipping consolidations: ViewExtractSkipCalcsSet? Thanks for the reply. I checked the view and it does include the consolidated elements. I've been testing by changing the CellPutS to special consolidated elements instead of variables and it worked. But I need th...
by kenship
Thu Oct 08, 2020 3:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI not writing string value to consolidated element
Replies: 7
Views: 2719

TI not writing string value to consolidated element

Hi all, I have trouble writing to consolidated element of a cube. Here's some details of how I setup the TI process: Data Source: Cube View - Target cube Variables: Based on Target cube dimensions, Variable Type all "String", Contents all "Other" Prolog: 1. Setup Target view and ...
by kenship
Fri Jul 17, 2020 12:27 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: DB formula not working when copying rule
Replies: 13
Views: 6577

Re: DB formula not working when copying rule

Glad it helped. At least I'm not the only one. Ken Today I encountered this 'not calculating' issue as awell While I created a new cube in explorer and tried to use DB to mirror the source cube to the targeted cube. I copied and modified the rules from consultant (thank you) and the cube view are al...
by kenship
Wed May 06, 2020 1:16 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI load record with unique count for duplicate
Replies: 5
Views: 2406

Re: TI load record with unique count for duplicate

Correct. But CellIncrementN is definitely more convenient.

Thanks!
Wim Gielis wrote: Wed May 06, 2020 1:00 pm If you forgot about that function, there is still CellGetN to retrieve the value in the cube, then add the new value of the data source, then CellPutN of the sum of both to the cube (same intersection).
by kenship
Wed May 06, 2020 12:15 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI load record with unique count for duplicate
Replies: 5
Views: 2406

Re: TI load record with unique count for duplicate

Do you need to keep track of each record individually? (In which case you need to introduce some kind of transactional dimension as per Wim's suggestion). Or is it possible to cummulate the duplicate cube address intersections? (In which case you could just use CellIncrementN not CellPutN) Thanks. ...
by kenship
Tue May 05, 2020 7:05 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI load record with unique count for duplicate
Replies: 5
Views: 2406

TI load record with unique count for duplicate

Hi, I'm loading a file with duplicate records. To load all records I need to identify each row with a unique identifier. To solve this I can create a dimension for record count and create a new element for each line so that no record will be overwritten due to duplication. I'm thinking to use the di...
by kenship
Fri Feb 21, 2020 1:32 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Ruled cell not released for write
Replies: 10
Views: 4502

Re: Ruled cell not released for write

Probably. But for simplicity I'd rather not create another process to do the job. Thanks! Try updating attribute with RunProcess, so it commits entirely outside of the processing chain. CubeSaveData must be added after attribute update. - No, it only matters if you want to serialize changes to the d...
by kenship
Thu Feb 20, 2020 9:13 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Ruled cell not released for write
Replies: 10
Views: 4502

Re: Ruled cell not released for write

I tried implementing the suggested solution.

Just moving the load process to Epilog won't work.

CubeSaveData must be added after attribute update.

Thanks to all.

Kenneth
by kenship
Thu Feb 20, 2020 4:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Ruled cell not released for write
Replies: 10
Views: 4502

Re: Ruled cell not released for write

Got it. In my case I'll probably separate the processes and test. Thanks for your input. Kenneth Actually the way the attribute working is just a "Y" under the attribute "Active" in the "Version" dimension. Well, that's not exactly how it works because just setting some...
by kenship
Thu Feb 20, 2020 3:53 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Ruled cell not released for write
Replies: 10
Views: 4502

Re: Ruled cell not released for write

Thanks for the reply. Actually the way the attribute working is just a "Y" under the attribute "Active" in the "Version" dimension. If my situation is the same as yours then can we say that update due to attribute only "really" happens when the process series ...
by kenship
Thu Feb 20, 2020 3:15 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Ruled cell not released for write
Replies: 10
Views: 4502

Ruled cell not released for write

Hi, I have the following: 1. Cube has rule calculation for only "Active Version" 2. Active Version is attribute in Version dimension 3. Cube subject to Year End Process ("YEpro") 4. YEpro calls for 2 processes: a. "Export" and b. "Import" 5. Export includes ru...