Search found 193 matches

by dharav
Tue May 02, 2017 3:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Tm1 cubeview display value incorrectly
Replies: 5
Views: 4748

Re: Tm1 cubeview display value incorrectly

Hi,

Could you please also mentioned the "Trace Feeder" calculations?

Can you do suppress zero and see whether same values appear for ("Jan-2004",Goal)=25?

If so then it looks like underfeeding.

Regards,

Dharav
by dharav
Fri Apr 28, 2017 12:35 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Conditional feeders with attributes
Replies: 5
Views: 5337

Re: Conditional feeders with attributes

declanr wrote:No because your feeder is in 'DataInputCube'; when you change a value in '1f_admin' it has no way of knowing that it needs to reevaluate and fire feeders in 'DataInputCube' without you somehow telling it to.
Except manually re-fire the feeders, is there a best practice approach?

Thanks,

Dharav
by dharav
Thu Apr 27, 2017 1:04 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Conditional feeders with attributes
Replies: 5
Views: 5337

Re: Conditional feeders with attributes

The only way I know of to have a feeder re-fire (within the model, not reprocessing feeders/saving rules/etc) is to feed from string value. When a string value changes and it is being used to feed, the feeder will re-fire, and you can structure that feeder to take advantage of any addressing change...
by dharav
Mon Apr 24, 2017 2:33 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Contributor Views are not showing updated alias value
Replies: 1
Views: 2247

Re: TM1 Contributor Views are not showing updated alias value

Hi, All

It is resolved. In order to update an alias of an element of control dimension, one has to also turn on alias in the system created subset of the control dimension.


Thank You

Dharav
by dharav
Thu Apr 20, 2017 12:11 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Contributor Views are not showing updated alias value
Replies: 1
Views: 2247

TM1 Contributor Views are not showing updated alias value

Hi, All I had updated alias of an element of control dimension. I deployed the app after saving both rights and control dimension rights. After performing above steps, i did not see the element with its new alias in contributor. It still shows old name. FYI: I already saved view. I removed the view ...
by dharav
Fri Mar 24, 2017 12:54 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 model size
Replies: 9
Views: 6653

Re: TM1 model size

I am trying to create a staging cube which is going to send data into 19 cubes for a particular Actual update process. I am not sure what all parameters i need, to assess the feasibility as the staging cube, whether it is going to work properly or how much performance gets bog down. So just want to...
by dharav
Tue Dec 13, 2016 5:07 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Update
Replies: 1
Views: 1891

Re: Dimension Update

Guys,

It is resolved. That was silly. I did not copy the code properly from notepad. The dimensionelementinsert function should be there and we good to go.

Thnaks for your time.

Thank You
by dharav
Tue Dec 13, 2016 4:26 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Update
Replies: 1
Views: 1891

Dimension Update

Hello All, I have following code in MY TI: E.g.: #========================================================================== IF ((DIMIX(pDim,pInsert2))=0 & (DIMIX(pDim,pInsert3))<>0 ); DimensionElementComponentAddDirect(pDim, pInsert3,pInsert2, 1); AttrPutS(vlev2,pdim,pInsert2,'A_PC'); IF((DIMIX...
by dharav
Wed Nov 30, 2016 10:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: SSL Cerificate update data lossed
Replies: 7
Views: 5735

Re: SSL Cerificate update data lossed

Was the server and admin server shutdown cleanly before updating the certificates? If the certificates were applied whilst running, possible that data could not be written back. Yes. Everything else working fine. All the data which were submitted is good. Two user just entered the data but did not ...
by dharav
Mon Nov 28, 2016 6:05 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: SSL Cerificate update data lossed
Replies: 7
Views: 5735

Re: SSL Cerificate update data lossed

All Experts, After updated the SSL certificate in one of my production server, I had changed the date of my production server to November 26 2016 to see whether everything will functioning or not and during that particular time one of my chore was running automatically that i can see it from my tm1...
by dharav
Tue Nov 22, 2016 8:42 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: SSL Certificate Update : Unable to login to TM1 Architect although Perspective is working finr=e
Replies: 3
Views: 4191

Re: SSL Certificate Update : Unable to login to TM1 Architect although Perspective is working finr=e

Hey Guyzz, need your help and guidance I have updated my TM1 server with the updated certificates. Now the prob is I am not able to login to any of the TM1 server through ARCHITECT, but after updating the Certificate Authority path in perspective and TM1p.ini I can login through perspective. Need H...
by dharav
Wed Oct 19, 2016 8:48 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subset using index
Replies: 9
Views: 6850

Re: Subset using index

The second way is more than likely faster because you are using a static subset in your data source rather than a dynamic one, like with the MDX. The best of both worlds would be to use MDX to create a static subset. Just use this syntax: SubsetMDXSet(pDim, sSub, '{TM1FILTERBYLEVEL( {TM1SUBSETALL( ...
by dharav
Wed Oct 19, 2016 7:16 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Subset using index
Replies: 9
Views: 6850

Subset using index

Hi, All I notice following while testing my TI process: My all other TI code remain same except the code to create the subset. => When i use following code, MY TI takes 1 min 30 seconds. IF( SubsetExists( pDim, sSub) = 1 ); SubsetDestroy( pDim, sSub); ENDIF; SubsetCreateByMDX(sSub,'{TM1FILTERBYLEVEL...
by dharav
Mon Oct 03, 2016 3:28 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Sort Order
Replies: 4
Views: 5460

Re: Dimension Sort Order

Hi, Declanr I could not achieve the my objectives by just placing following dimension sort order function. I implement both dimension sort order function and (attributes based & element Level based) MDX to create subset and sort only parent of child elements in customized order. It works now as ...
by dharav
Wed Sep 21, 2016 7:44 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Sort Order
Replies: 4
Views: 5460

Re: Dimension Sort Order

@declanr: Thanks for correcting me. I insert the following syntax in MetaData: DimensionSortOrder(pDim, 'ByInput', 'Ascending','ByName' , 'Ascending'); Result: Consolidation Elements order remains same - Expected behavior as CompSortType is "ByInput" Child elements order also remains same ...
by dharav
Tue Sep 20, 2016 8:02 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension Sort Order
Replies: 4
Views: 5460

Dimension Sort Order

I created the generic process to enter the new elements in the dimension while uploading the actual data. It works except the dimension sort order. Hierarchy: Consolidation A Consolidation B Consolidation C 90012345678 90012345679 90012345680 90012345675 ----> Process entered his element while uploa...
by dharav
Wed Sep 14, 2016 4:30 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Does TM1 10.2.2 support Excel 2016 ?
Replies: 14
Views: 17924

Re: Does TM1 10.2.2 support Excel 2016 ?

@xavier 13: Have you tested in FP5? I have 10.2.2 FP5 and perspective works good except the rebuild current book option behavior. In Excel 2010, If i click on Rebuild Current Book option than it recalculates data in one sheet and move to different sheet and we can see that. At the end, it stops on t...
by dharav
Fri Sep 02, 2016 5:39 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: csv not uploading properly through a TI process
Replies: 7
Views: 5309

Re: csv not uploading properly through a TI process

as Wim suggest: asciioutput helps. ***the TI takes the word after comma " , " to the next column, so in that case, my column data are not correct. what should I do ? - is it string data containing ","? If string than Tab delimiter and if number than comma delimiter should resolve...
by dharav
Fri Jul 29, 2016 4:27 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Contributor Ownership Concept
Replies: 1
Views: 2717

Re: TM1 Contributor Ownership Concept

I got it!! }tp_application_state control cube is the place where you can manipulate the logic. It works. 1) Zero Out data for required approval hierarchy elements in this cube 2) get the details of the user who runs the process 3) Insert data in to }tp_application_state cube (it would work like taki...
by dharav
Thu Jul 28, 2016 6:47 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Contributor Ownership Concept
Replies: 1
Views: 2717

TM1 Contributor Ownership Concept

Hello All, Environment: 10.2.0 We have approval application has been placed. Business Case: Users are consolidating their branch data in to their excel sheet. Few users are copying and pasting data from their excel sheet to TM1 contributor. I created an excel sheet using DBSW formula to send data di...