ISPatientRecallVisit.ApproxConclDate

Description

The approximate date the completion intervention takes place.

Syntax

object.ApproxConclDate

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

Return Value

string

Example

Display the approximate date the completion intervention takes place.

sub main()
  Dim aPatient, aRecallVisits, aMessage
     
  set aPatient = Profile.SelectPatient
  set aRecallPlans = aPatient.RecallPlans  

  aMessage = aMessage & GetPlanCollectionInfo(aRecallPlans)

  Profile.MsgBox(aMessage)
end sub

function GetPlanCollectionInfo(aRecallPlans)
  for each aPlan in aRecallPlans
    info = aPlan.Description & vbNewLine
    set aVisits = aPlan.Visits
    for each aVisit in aVisits 
      info = info & " The approximate date the completion intervention '" &_
      aVisit.Description & "' takes place = " &_
       aVisit.ApproxConclDate & vbNewLine
    next
  next  
  GetPlanCollectionInfo = info
end function   
Note:

In Profile Client v8 on User Interface Approximate Date can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Date Concluded > Approx fields.

Version information

Added in v7.8.0