ISPatientRecallVisit.StatusAsStringEx

Description

The status reflecting the intervention status and overall status of the actions in the patient's intervention.

Syntax

object.StatusAsStringEx

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

Return Value

string

Example

Display the status reflecting the intervention status and overall status of the actions in the patient's intervention.

sub main()
   Dim aPatient, aRecallVisits, 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 
    set aPlan = aVisit.ParentPlan
    info = info & vbNewLine & "The status of the intervention '" &_
    aVisit.Description & "' =  " & aVisit.Status & "; Status As String = " &_
     aVisit.StatusAsString & "; Status As String Extended = " &_
     aVisit.StatusAsStringEx
  next
  GetVisitCollectionInfo = info
end function  
Note:

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

Version information

Added in v7.8.0