Assignees

<< Click to Display Table of Contents >>

Navigation:  Low-code Process Automation > Studio Cloud - Authoring environment > Bizagi Studio > Process wizard > Business Rules > Bizagi Functions > Me Functions >

Assignees

FUNCTION

DESCRIPTION

SYNTAX

BossId

Returns a collection containing the Boss of all assignees of an Activity.

 

The length of this collection will be greater than one when the assignment method is 'Everyone'.

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user and a user property (id, Boss, Area, Email, FullName)

Me.Assignees[index].BossId

FullName

Returns a collection containing the full name of all assignees of an Activity.  The length of this collection will be greater than one when the assignment method is 'Everyone'.

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user and a user property (id, Boss, Area, Email, FullName)

Me.Assignees[index].FullName

getUserProperties["Property"]

Returns a collection containing a specific user property of all assignees of an Activity.  

 

Parameter 1: index of the assignee

Parameter 2: Property name

Me.Assignees[index].getUserProperties["Property"]

Id

Returns a collection containing the user identifier of all assignees of an Activity.  The length of this collection will be greater than one when the assignment method is 'Everyone'.

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user and a user property (id, Boss, Area, Email, FullName)

Me.Assignees[index].Id

Location.Name

Returns a collection containing the location of all assignees of an Activity.  The length of this collection will be greater than one when the assignment method is 'Everyone'.

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user.

Me.Assignees[index].Location.Name

Positions

Returns a collection containing the positions of a specific assignee of an Activity.  

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user.

Me.Assignees[index].Positions

Roles

Returns a collection containing the roles of a specific assignee of an Activity.  

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user.

Me.Assignees[index].Roles

Skills

Returns a collection containing the skills of a specific assignee of an Activity.  

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user.

Me.Assignees[index].Skills

UserName

Returns a collection containing the user name of all assignees of an Activity.  The length of this collection will be greater than one when the assignment method is 'Everyone'.

 

It is necessary to use brackets to iterate the collection. You must specify the index of the user.

Me.Assignees[index].UserName


Last Updated 1/6/2022 11:34:25 AM