Search found 6 matches

by ravbidari
Fri Jun 30, 2017 7:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8164

Re: Delete Consolidated Elements

Hi tom,

Thanks:

I did re-test
IF(ELLEV(MyDimension, MyElement) > 0); and it worked.Thank you.

only thing - i did not understand is. SUBSETMDXSET(MyDimension, MySubset, '')
What is the need of ? SUBSETMDXSET function removes the MDX expression from a dynamic subset (Per IBM)
Regards
by ravbidari
Wed Jun 28, 2017 11:17 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8164

Re: Delete Consolidated Elements

Hi The below code effects the regular and alternate hierarchy. IF(ELLEV(MyDimension, MyElement) > 0); DIMENSIONELEMENTDELETE(MyDimension, MyElement); ENDIF: I need to apply conditions to ONLY Alternate hierarchy. Example: Account_Alt (TopLevle) AAA A1 A2 BBBB B1 B2 CCCC C1 C2 Like above the -I have ...
by ravbidari
Wed Jun 28, 2017 11:43 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8164

Re: Delete Consolidated Elements

Hi, I am still trying to get there- Condition on delete: IF(DTYPEvDimName,InputeElem)@= 'C'); DIMENSIONDELEMENTDELETE(vDimname,InputElem); Endif: I have tried using the ELISANC(dimension, element1, element2) example:IF(DTYPEvDimName,InputeElem)@= 'C' & LISANC(Account, element1, element2) The pro...
by ravbidari
Fri Jun 23, 2017 8:43 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8164

Re: Delete Consolidated Elements

Hi tomok, Thanks for reply: I took the data source as dimension subset and coded vDimName = 'Account'; vSubset = 'Delete_Consolidation'; IF(SubsetExists(vDimName,vSubset)=1); SubsetDestroy(vDimName,vSubset); Endif; SubsetCreatebyMDX(vSubset, '{EXCEPT({[ACCOUNT].[ACCOUNT_CUSTOM_TM1].CHILDREN}. {[acco...
by ravbidari
Fri Jun 23, 2017 6:49 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Delete Consolidated Elements
Replies: 11
Views: 8164

Delete Consolidated Elements

Hi All, I have two main dimension hierarchy, regular and alternate hierarchy. I need delete parents and along with children and ancestor for the ONLY few of the consolidated elements (Parents) from alternate hierarchy. This alternate hierarchy have multiple parents/rollups under it. I tried followin...