Can any one please provide a solution in Documentum Query Language to access the folder details of a file checked out from documentum if we provide the object_id of the corresponding file. Thank You.......

link|improve this question

71% accept rate
Since it's not generic c# question, it hopefully would help tagging it so. en.wikipedia.org/wiki/Documentum – DK. Oct 6 '10 at 17:45
corrected tag, it's a dql question, not C# – David Pierre Oct 7 '10 at 12:30
feedback

2 Answers

up vote 6 down vote accepted

You can try this dql: select * from dm_folder where r_object_id in (select i_folder_id from dm_document where r_object_id = '<objectId>')

link|improve this answer
Thanks a lot Mr.David Pierre – Anjana Oct 8 '10 at 17:04
You should consider accepting my answer if it was useful. – David Pierre Oct 13 '10 at 11:44
As i am a beginner in stack overflow am not used to the flow tats y. Once more thanks for the solution – Anjana Mar 4 '11 at 12:24
feedback

You can simultaneously Dump the object ID in API console.. Command dump,c, You can see hell lot of attributes - more than what DQL can provide you/ Then Search for r_object_id Dump that again and Search for I_folder_path you will get yor oath

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.