ISPatient.HasProviderInCareTeam

Description

This function checks if the patient has the selected provider in the care team.

Syntax

object.HasProviderInCareTeam(aProvider)

Part Attribute Type Description
object Required
The object always implements the ISPatient interface
aProvider In, Required
The provider to check

Return Value

bool

Returns "True" if the patient has the selected provider in care team.

Example

Display HasProviderInCareTeam for the patient.

Dim aPatient  
Dim aProviderInCareTeam
Dim aProvider

Set aPatient = Profile.SelectPatient
set aProvider = Profile.LoadProvider("GG")
aProviderInCareTeam = aPatient.HasProviderInCareTeam(aProvider)
  
Profile.MsgBox (aProviderInCareTeam)  
Note:

In Profile Client v8 on User Interface Care Team can be found in Patient > Alter Patient > Care Teamor in Clinical > Medical Record > Care Team.

See also

Version information

Added in v7.8.0