Hello,
I am trying to get the ACL object along with its ACL entries and object permissions using DQL query, anyone can help on this?
Are you looking to get the document's(object's) current acl and the variou permissions set on the document through ACL applied?
select d.r_object_id, d.object_name, a.r_accessor_name, a.r_accessor_permit from dm_document d , dm_acl a where d.r_object_id = '<object_id>' and d.acl_name = a.object_name ENABLE(ROW_BASED);
Hope this shall help
hi,
select * from dm_folder where object_name='group_name'
thanks and regards
sri