Hello
I have a case where i want to fetch the folder hierarchy starting from child folder to parent folder to cabinet . in this case i have written a query
select object_name from dm_folder where r_object_id IN
(select i_ancestor_id from dm_folder where r_object_id='0b003fd18008614f');
results are in unordered fashion like this
Aspect
Modules
scase
System
but the original r_folder_path is
/System/Modules/Aspect/scase
how to modify this query or is there ant different query to fetch this in ordered fashion
Regards