ISPatientRecallPlan.ClosedDate

Description

The date the patient's care plan is completed, or no longer applicable to the patient. On

Syntax

object.ClosedDate

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

Return Value

DateTime

Example

Display the date the patient's care plan is completed, or no longer applicable to the patient.

Dim aPatient
Dim aRecallPlans
Dim aMessage
Dim aPlan

Set aPatient = Profile.SelectPatient
set aRecallPlans = aPatient.RecallPlans

if aRecallPlans.Count = 0 then
  Profile.MsgBox("The patient has no care plans!")
  exit sub
end if

for each aPlan in aRecallPlans
  aMessage = aMessage & vbNewLine & "The date the care plan '" &_
    aPlan.Description & "' is copmleted = " & aPlan.ClosedDate
next

Profile.MsgBox(aMessage)   
Note:

In Profile Client v8 on User Interface Closed Date can be found in Clinical > Medical Record > Care plans > Open active object(s) > General > Polan Outcome > Status fields.

Version information

Added in v7.8.0