Page 1 of 1

About TI Function “DimensionSortOrder”

Posted: Thu Jan 09, 2025 6:43 am
by Niko
hi guys, anyone know Is the effect of A and B the same when executed in TI process?
A:

Code: Select all

DimensionSortOrder (cDim01, ‘ByName’, ‘Ascending’,‘ByHierarchy’, ‘Ascending’);
B:

Code: Select all

CellPutS(‘BYNAME’, ‘}DimensionProperties’, cDim01, ‘SORTCOMPONENTSTYPE’);
CellPutS(‘ASCENDING’, ‘}DimensionProperties’, cDim01, ‘SORTCOMPONENTSSENSE’);
CellPutS(‘BYHIERARCHY’, ‘}DimensionProperties’, cDim01, ‘SORTELEMENTSTYPE’);
CellPutS(‘ASCENDING’, ‘}DimensionProperties’, cDim01, ‘SORTELEMENTSSENSE’);