ISPatientRecallVisit.AssignedToDescription

Description

The provider to whom the patient's intervention is assigned.

Syntax

object.AssignedToDescription

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

Return Value

string

Example

Display the full name of the provider to whom the patient's intervention is assigned.

sub main()
   Dim aPatient, aRecallPlans, aMessage
     
   set aPatient = Profile.SelectPatient
   set aRecallPlans = aPatient.RecallPlans
   
   for each aPlan in aRecallPlans
     aMessage = aMessage & GetVisitCollectionInfo(aPlan.Visits)
   next

  Profile.MsgBox(aMessage)
end sub

function GetVisitCollectionInfo(aVisits)
 
  for each aVisit in aVisits
    info = info & vbNewLine & "The provider to whom the intervention '" &_
    aVisit.Description & "' is assigned is " & aVisit.AssignedToDescription
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function   
Note:

In Profile Client v8 on User Interface Assigned To Description can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Intervention > Assigned to field.

Version information

Added in v7.8.0