UserGroupMembershipGroups
Query group members of a user group for a SAP Business Objects BI instance.
Select
The following queries are processed server-side:
SELECT * FROM UserGroupMembershipGroups
SELECT * FROM UserGroupMembershipGroups WHERE OwnerGroupId=1
SELECT * FROM UserGroupMembershipGroups WHERE OwnerGroupId=1 AND Name='test'
Insert
INSERT INTO UserGroupMembershipGroups (OwnerGroupId, Id) VALUES (2708, 3409)
Delete
DELETE FROM UserGroupMembershipGroups WHERE OwnerGroupId=2708
DELETE FROM UserGroupMembershipGroups WHERE OwnerGroupId=2708 AND Id=3409
Columns
| Name | Type | ReadOnly | Description |
| OwnerGroupId [KEY] | Integer | False |
The group owner ID. |
| Id [KEY] | Integer | False |
The group identifier. |
| CUID | String | True |
The group cluster unique ID. |
| Name | String | True |
The group name. |
| Description | String | True |
The group description. |
| Keywords | String | True |
Keywords of the user group. |
| Created | Datetime | True |
The date time when the user group was created. |
| Updated | Datetime | True |
The date time when the user group was last updated. |