2

Is there a way to get the list of default groups (owners,contributors,members) of a room using dql in documentum 6.6

2 Answers2

1

Besides

select builtin_groups from dmc_room where object_name ="MYROOM"

To list the room and there actual(owners and contributors only) groups use:-

select dg.group_name,dr.object_name from dm_group dg,dmc_room dr where group_name like 'room_%_%n%s' and dg.group_name IN dr.builtin_groups
0
select builtin_groups from dmc_room where object_name ="MYROOM"
perilbrain
  • 7,961
  • 2
  • 27
  • 35