ISProfile.LoadOrgMemberByPOS

Description

This function returns the organisational member by the place of service with the specified ID.

Syntax

object.LoadOrgMemberByPOS(aPOSID)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aPOSID In, Required
int
ID of the place of service

Return Value

ISOrgMember

Returns the organisational member by the place of service with the specified ID.

Example

Display the name and the code of the organisational member.

Dim aPosID
Dim aOrgMember
 
aPosID = Profile.CurrentPOSId 
Set aOrgMember = Profile.LoadOrgMemberByPOS(aPosID)

Profile.MsgBox(aOrgMember.Name & " (" & aOrgMember.Code & ")")
Note:

In Profile Client v8 on User Interface Org Members can be found in Organisation > People and Places.

Version information

Added in v7.8.0