ISPatientRecallVisit.PerformedByExtProviderID

Description

ID of the external provider who performed the patient's intervention.

Syntax

object.PerformedByExtProviderID

Part Attribute Type Description
object Required
The object always implements the ISPatientRecallVisit interface

Return Value

int

Example

Display ID of the external 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 & "ID of the external provider who performed " &_
    " the patient's intervention '" & aVisit.Description &_
    "' is  " & aVisit.PerformedByExtProviderID
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function  
Note:

In Profile Client v8 on User Interface External Provider ID cannot be found. Performed By can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Intervention > Performed By field.

Version information

Added in v7.8.0