ISPatientRecallVisit.ApprovalStatus

Description

The approval status for the patient's intervention.

Syntax

object.ApprovalStatus

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

Return Value

TSRecallApprovalStatus

Example

Display the approval status for 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 approval status for intervention '" &_
    aVisit.Description & "'  =  " & aVisit.ApprovalStatus
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function   
Note:

In Profile Client v8 on User Interface Approval Status can be found in Clinical > Medical Record > Care Plans > Open active object(s) > General > Approval field.

Version information

Added in v7.8.0