I have the following DQL query:
select r_object_id, r_modify_date, authors from dm_document where
FOLDER (ID('0cde75d18000ed03'))
order by r_modify_date
I have found that the values of the authors in the result will be situated not in proper order (the order I see in WebTop when I open authors of a document).
I have googled and found the following solution:
select r_object_id, r_modify_date, authors from dm_document where
FOLDER (ID('0cde75d18000ed03'))
order by r_modify_date , i_position desc
I see it works. But how I understand, the usage of the i_position desc is undocumented solution – in ‘Documentum_System_66_Object_Reference.pdf’ I have just not found explanation of what the i_position desc is.
The question is: can I rely on the solution? Have someone met any problems with it?