How to only show elements in consolidation and not by themsl
Posted: Mon Dec 12, 2011 5:26 pm
Good Afternoon,
I've written a TI process to import elemnts into a dimension but only want to show them in the consolidations rather than individually.
How do I do this, I've pasted the code I've used in Metadata below and followed an example on the internet which shows in the format I would like but I can't acheive it.
DIMENSIONELEMENTINSERT('Test', '', TimeData, 'n');
DIMENSIONELEMENTINSERT('Test','',P,'c');
DIMENSIONELEMENTINSERT('Test','',Q,'c');
DIMENSIONELEMENTINSERT('Test','',H,'c');
DIMENSIONELEMENTINSERT('Test','',F,'c');
DIMENSIONELEMENTINSERT('Test','',A,'c');
DIMENSIONELEMENTCOMPONENTADD('Test',Q,P,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',H,Q,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',F,H,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',A,F,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',P,TimeData,1.000000);
Your help would be must appreciated.
Regards
Tom
I've written a TI process to import elemnts into a dimension but only want to show them in the consolidations rather than individually.
How do I do this, I've pasted the code I've used in Metadata below and followed an example on the internet which shows in the format I would like but I can't acheive it.
DIMENSIONELEMENTINSERT('Test', '', TimeData, 'n');
DIMENSIONELEMENTINSERT('Test','',P,'c');
DIMENSIONELEMENTINSERT('Test','',Q,'c');
DIMENSIONELEMENTINSERT('Test','',H,'c');
DIMENSIONELEMENTINSERT('Test','',F,'c');
DIMENSIONELEMENTINSERT('Test','',A,'c');
DIMENSIONELEMENTCOMPONENTADD('Test',Q,P,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',H,Q,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',F,H,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',A,F,1.000000);
DIMENSIONELEMENTCOMPONENTADD('Test',P,TimeData,1.000000);
Your help would be must appreciated.
Regards
Tom