ISPatientRecallVisit.PerformedByDescription

Description

The full name of the provider who performed the patient's intervention.

Syntax

object.PerformedByDescription

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 who performed the patient's intervention.

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 full name of the provider " &_
    "who performed the intervention '" & aVisit.Description &_
    "' is  " & aVisit.PerformedByDescription
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function   
Note:

In Profile Client v8 on User Interface Performed By Description can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Intervention > Performed By fields.

Version information

Added in v7.8.0