IRubricatorSegment.GetEffectiveRights

Syntax

GetEffectiveRights: Integer;

Description

The GetEffectiveRights property returns effective permissions of the current user for a segment.

Comments

Effective permissions include all the operations, which are explicitly allowed for the user. The value that is returned by this method is represented by an access mask. Mask value is an 8-bit byte binary number reduced to decimal form. To check mask value, use values of the  MetabaseObjectPredefinedRights  enumerable type in combination with  CubeSpecificRights. To parse mask value implement the custom function that enables the user to map separate mask bits to appropriate enumeration values. The example of work with access mask is provided in the Examples: Work with Access Mask section. The Read and Write operations are used when permissions to a segment are granted.

Example

Executing the example requires that the repository contains a time series database with the OBJ_RUBRICATOR identifier, in which segments must be determined.

Sub Main;

Var

mb: IMetabase;

rubInst: IRubricatorInstance;

Rub: IRubricator;

Segs: IRubricatorSegments;

Seg: IRubricatorSegment;

Begin

mb := MetabaseClass.Active;

Rub := mb.ItemById("OBJ_RUBRICATOR").Bind As IRubricator;

rubInst := (Rub As IMetabaseObjectDescriptor).Open(Null) As IRubricatorInstance;

Segs := rubInst.Segments;

Seg := Segs.Item(0);

Debug.WriteLine(Seg.GetEffectiveRights);

End Sub Main;

After executing the example effective permissions of the current user to the first data segment are displayed in the console window in decimal form.

See also:

IRubricatorSegment