Overview
Returns list of available positions by name. Empty positions (no active employee exist) are not returned by this function. Id property of these positions correspond to the Id column on OrganizationUnitPosition table.Array<Identity> $Membership.FindPosition(position: string, organizationUnit: string, direction: ( "Up" | "Down" | "None" ))
Arguments
Remarks
Empty positions with no employee are not returned by this function even position is defined.
If organization unit provided, position only searches with specified unit scope. Direction parameter specifies the scope of search.
Organization unit parameter can be specified as Id (guid value) of unit to search or path of organization (e.g. 'MyDepartment/MyChildUnit')
Example
Find "Accounting Specialist" on current organization.
var positions = $Membership.FindPosition('Accounting Specialist');
Example
Find "Accounting Specialist" on "General Management" department.
var positions = $Membership.FindPosition('Accounting Specialist', 'General Management');
Example
Find "Accounting Specialist" on "General Management/Accounting" department.
var positions = $Membership.FindPosition('Accounting Specialist', 'General Management/Accounting');
Example
Find "Accounting Specialist" on "General Management/Accounting" department by using department Id.
var organizationUnit = $Membership.FindIdentity('General Management/Accounting', 'OrganizationUnit'); var positions = $Membership.FindPosition('Accounting Specialist', organizationUnit);