This documentation supports the 20.02 version of Remedy Action Request (AR) System.

To view an earlier version, select the version from the Product version menu.


Group information and structures

The structures ARGroupInfoList and ARGroupInfoStruct are used the ARGetListGroups API function.

ARGroupInfoList

A list of zero or more groups.


typedef struct ARGroupInfoList
{
   unsigned int        numItems;
   ARGroupInfoStruct  *groupList;
}  ARGroupInfoList;


This structure has these elements:

Element

Description

numItems

Integer that specifies the number of items in the list

groupList

Pointer to each item in the list. Items are represented by ARGroupInfoStruct

ARGroupInfoStruct


typedef struct ARGroupInfoStruct
{
   ARInternalId       groupId;
   unsigned int       groupType;
   ARAccessNameList   groupName;
   unsigned int       groupCategory;
   ARInternalId       groupParent;     /* parent of this group
                                          (may be none) */
} ARGroupInfoStruct;



This structure has these elements:

Element

Description

groupId

The group number

groupType

The group type (none, view, or change)

groupName

The name of the group.

groupCategory

Category of the group (regular, computed, or dynamic)

groupParent

The parent group of this group. A value of 0 means that there is no parent group.

Use the following information to know more about structures.

Was this page helpful? Yes No Submitting... Thank you

Comments