Search found 129 matches

by ajain86
Thu Dec 02, 2010 6:34 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1Web Page Length Plus Undo/Redo
Replies: 3
Views: 2827

Re: TM1Web Page Length Plus Undo/Redo

I have never tried this, but have seen some documenation on controling the page length in tm1 web.

Search in the documenation for
CubeViewerRowPageSize
CubeViewerColumnPageSize
by ajain86
Thu Dec 02, 2010 6:17 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deploy TM1 Contributor error - sandboxing?
Replies: 12
Views: 8256

Re: Deploy TM1 Contributor error - sandboxing?

Shawn, I have experienced both issues you have listed. It has been over 6 months since I figured them out. For the first one, I used a similar workaround. Basically 1 main ID that would control the contributor packages. For the second one, I found out that the error is very generic and the issue cou...
by ajain86
Thu Dec 02, 2010 4:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How to Concatinate the Variables ??
Replies: 2
Views: 1937

Re: How to Concatinate the Variables ??

the prolog tab does not read in the datasource.

move this statement to the data tab:
scol6input = V3|V4|V5|-|'Rate' ;
by ajain86
Thu Dec 02, 2010 3:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: While statements in TI process
Replies: 17
Views: 26495

Re: While statements in TI process

Stella, It seems the manufacturing plant value is determined by the rows, if so then you already have the proper implementation of looping through the periods and having a separate cellputn for each plant. When you say "one number", is that the same number being posted to all manufacturing...
by ajain86
Thu Dec 02, 2010 2:47 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Using datasource as parameter for ZeroOut
Replies: 7
Views: 5168

Re: Using datasource as parameter for ZeroOut

tomok, you are correct. thanks for catching my mistake.

I guess the morning coffee's effect have not kicked in yet.
by ajain86
Thu Dec 02, 2010 2:44 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Building dimensions and loading data-separate TI better?
Replies: 5
Views: 3740

Re: Building dimensions and loading data-separate TI better?

I agree with Martin in that it is a case by case basis. In my limited experience, I have noticed that regular dimension maintenance has been of a lower priority and most dimension updates are actually caught during data loads. For this, I create an unmapped bucket in the dimension and add any new me...
by ajain86
Thu Dec 02, 2010 2:22 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Using datasource as parameter for ZeroOut
Replies: 7
Views: 5168

Re: Using datasource as parameter for ZeroOut

I would just split out your code into the prolog, data, and the epilog tabs. Prolog: CurYr=’20’|SUBST(Period_Name,5,2); CurMth= SUBST(Period_Name,1,3); vCube = 'Reporting'; vDimName1 = 'Month'; vDimName2 = 'Year'; vTemp = 'SystemUseOnly_Load' | STR(RAND, 10, 8); vViewName = vTemp; vSubName = vTe...
by ajain86
Wed Dec 01, 2010 4:32 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Identify N Level Elements by parent attribute value
Replies: 3
Views: 2824

Re: Identify N Level Elements by parent attribute value

I believe you need 1 more: [code['Testing_Measure'] = N: if( Attrn('OV_Item', !OV_Item, 'Scrap_Value')=1 % Attrn('OV_Item', elpar('OV_Item',elpar('OV_Item',!OV_Item, 1), 1), 'Scrap_Value')=1 % Attrn('OV_Item', elpar('OV_Item',elpar('OV_Item',elpar('OV_Item',!OV_Item, 1), 1), 1), 'Scrap_Value')=1 % A...
by ajain86
Wed Dec 01, 2010 4:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Building dimensions and loading data-separate TI better?
Replies: 5
Views: 3740

Re: Building dimensions and loading data-separate TI better?

For the most part, I prefer to do dimension maintenance as a separate process prior to the data load. I do, however, still have steps in the metadata for the load process to add any new members to avoid any errors during the load. This section has a check to first make sure if the element does not e...
by ajain86
Wed Dec 01, 2010 4:12 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Access Level to TM1 box
Replies: 2
Views: 2076

Re: Access Level to TM1 box

I have survived with similar restrictions in the past. It is not that bad. I was able to successfully do almost all the tasks for my position. IT would do monthly maintenance and that would be only time the machine would be re-booted. In an emergency situation, I could just email IT to re-boot. What...
by ajain86
Tue Nov 30, 2010 3:19 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 CellSecurity Using isleaf & IF
Replies: 3
Views: 3961

Re: TM1 CellSecurity Using isleaf & IF

When you are setting string values in a rule, you have to place a "S:" immediately to the right of the equal sign.

Try:
[]=S:IF(((ISLEAF=1) & (!}Groups @= 'ProductPersonel') & (!RevenueMeasure @= 'Revenue Gap')), 'NONE', 'READ');
by ajain86
Mon Nov 29, 2010 6:22 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Zero-out data in TM1 cube
Replies: 14
Views: 24959

Re: Zero-out data in TM1 cube

sdm,

If you are clearing out ALL data for a list of cubes with no regard for specific element restrictions, your process could be much simpler if you utilize the CubeClearData() function as rkaif pointed out.
by ajain86
Wed Nov 24, 2010 3:28 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Can TI refer to previous row's data during import?
Replies: 5
Views: 3294

Re: Can TI refer to previous row's data during import?

You have 2 options: 1) add the code that lotsaram posted to the beginning of the data tab. 2) create a new variable in the Variables tab with that code. It will then place the code for you in the generated statements section of the data tab. This will require you to assure that your cellputn functio...
by ajain86
Wed Nov 24, 2010 3:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI Process Performance Issue
Replies: 2
Views: 1912

Re: TI Process Performance Issue

Dan,

You are performing conditional checks on the data tab? for which you have a dynamic subset?

What processing are you performing on the data tab that would require the subsetgetsize command?
by ajain86
Fri Nov 19, 2010 3:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subset Alias display - messed up by dim recreate
Replies: 4
Views: 3466

Re: Subset Alias display - messed up by dim recreate

Chris, You are recreating the dimension because the consolidations change, right? Insted of deleting all elements, why not just loop through the dimension and only delete consolidated elements. I prefer to go this route and have never had the issue you described. It will keep all level 0 members int...
by ajain86
Wed Nov 17, 2010 3:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Zero-out data in TM1 cube
Replies: 14
Views: 24959

Re: Zero-out data in TM1 cube

I have found it best to use a TI process to clear out my data. I like to create a dynamic view with dynamic subsets and run the clear out from there. This allows me to clear specific sections of the data without having to manually create views everytime. It also allows me to clear data for any cube ...
by ajain86
Thu Nov 04, 2010 3:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: View Zero out
Replies: 3
Views: 2889

Re: View Zero out

Are you using the viewzeroout function? If so, then how are you getting record counts.

If you are looping through the view to get record counts, then are you assigning a blank or 0 value to all cells on the data tab?
by ajain86
Fri Oct 15, 2010 2:44 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Zero Out Data from consolidation level down
Replies: 2
Views: 3370

Re: Zero Out Data from consolidation level down

You can also use this:

SubsetCreateByMDX(subset, '{TM1DrillDownMember({'[Dimension].[Element]'},ALL,Recursive)}');
by ajain86
Wed Oct 13, 2010 8:57 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Possible to feed Measures data to a cube with uncommon dim?
Replies: 3
Views: 2198

Re: Possible to feed Measures data to a cube with uncommon d

Tom, This can definitely be achieved. I have not tested this but saw a similar implementation in an application. You would create an intermediary cube that would have dimensions from the other 2 cubes: Dept, Job Code, Earning, GL Account, GL Budget Measures In the Payroll Budget Cube: Skipcheck; Fee...
by ajain86
Wed Oct 13, 2010 7:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Contributor: Cannot see Contributions in Application
Replies: 4
Views: 3043

Re: Contributor: Cannot see Contributions in Application

Martin, You are correct that for the most part Contributor is just TM1 Web mixed with TM1 Workflow. A Contributor application in the 9.5.1 version has 2 folders to show the planning nodes. 1) Contributions folder - this contains a list of all level 0 members in your approval hierarchy. They are just...