Hi,
Can you please help with syntax, how to select all base elements of a given parent element using dimension queries?
I would like to fetch all base jobs of given parent job code from Jobs dimension where job status is 1 and order by attribute. But below query return all base elements of dimension.
OLAPelementList JobsList = on olapConnection select leaves from dimensionName where @(att_obj_status)==1 order by att_obj_order asc;
Hence, currently i am using
OLAPelementList JobsList = OLAPGetChildElementList(olapConnection , dimensionName, ParentElement, true);
Please help, if dimension query can return values of given parent element.
Thanks & Regards
Venkat.