Hello,
I have a Documentum 6.5 setup that uses the Trusted Content Services (TCS) module. I have added some users/groups to "Additional Permissions", "Access Restrictions", "Required Groups" and "Required Group Set" sections in the Permissions for a document (see attached image).
Below is my DQL query and results for the acl_name of the same document. Looking at the result below how can I determine whether a group/user has access to the document? E.g. Does "docu" has access to the document? How can I know that a user must be member of "admingroup" before he/she can access the document? Do I need to retrieve additional columns to get complete information for TCS?
select r_accessor_name,r_accessor_permit,r_is_group,r_accessor_xpermit,acl_class from dm_acl where object_name='dm_4500000280000d17' order by r_accessor_permit
r_accessor_name r_accessor_permit r_is_group r_accessor_xpermit acl_class
-------------------------------- ----------------- ------------ ------------------ ------------
admingroup 0 1 0 0
another stinky group 0 1 0 0
docu 0 1 0 0
docu 1 1 0 0
dm_mediaserver 1 0 0 0
dm_world 3 0 0 0
docu 5 1 0 0
dm_owner 7 0 0 0
(8 rows affected)
Thanks in advance.