ISOrgMember.ClinicalPosID

Description

ID of the clinical POS that the organisation node should be linked to.

Syntax

object.ClinicalPosID

Part Attribute Type Description
object Required
The object always implements the ISOrgMember interface
Restriction: This property is readonly.

Return Value

int

Example

Display ID of the clinical POS that the organisation node should be linked to.

Dim aFilter
Dim aOrgMember
Dim aOrgMembers
Dim aMessage

Set aFilter = Profile.CreateOrgMembersFilter
set aOrgMembers = Profile.LoadOrgMembers(aFilter)

aMessage = "Org Nodes Count = " & aOrgMembers.Count

for each aOrgMember in aOrgMembers
aMessage = aMessage & vbNewLine & "ID of the Clinical POS " &_
  "that the org node '" & aOrgMember.Name & "' should be linked to = " &_
  aOrgMember.ClinicalPosID
next      

Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Clinical Pos ID cannot be found. Clinical POS can be found in Organisation > People & Places > Organisational Structure > Open the selected node > General > Clinical POS field.

Version information

Added in v7.10.90