Skip to main content
Skip table of contents

DbGetGroupEntries

Gets an array of <GroupMember> from a DigaSystem content database.

image-20250207-084442.png

After reading the metadata into a variable you can access the metadata properties, e.g. "g.Reserve1" what the position represents.

Properties

image-20250207-093712.png

Input

Name

Description

GroupId

The reference number (id) of the group

Table

A DigaSystem table id, e.g. "vm-sql-digas\galileo". Often taken from workflow argument Arg_TableId.

Output

Name

Description

GroupMembers

A variable of type David.Dpe.ContentSerivce.GroupMember which is used to return the group metadata as an array of <GroupMember>.

Also see Working With Variables

Example

Drag and drop the activity into a workflow.

image-20250207-090010.png

Define a result variable with name g of type David.Dpe.ContentService.GroupMember as an array GroupMember[] (also see Working With Variables). Enter the variable name g into the activity field which specifies the variable for the result GroupMembers.

Add a WriteLine activity to output the EntryId or the position of the entry inside a group.
Example1: "EntryId: " + string.Join(",",g.Select(Function(n) n.EntryId))
Example2: "GroupRefId: " + string.Join(",",g.Select(Function(n) n.reserve2))

image-20250210-092335.png

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.