ISPatientRecallVisit.RecallObjectiveID

Description

ID of the care plan objective the intervention is associated with.

Syntax

object.RecallObjectiveID

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

Return Value

int

Example

Display ID of the care plan objective the intervention is associated with.

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 
    info = info & vbNewLine & "ID of the care plan objective " &_
    " the intervention '" & aVisit.Description &_
     "' is associated with  =  " & aVisit.RecallObjectiveID
   
    next
  GetVisitCollectionInfo = info
end function
Note: This field appears only if the intervention was added to an objective; if so, the objective is shown just above the calendar.

In Profile Client v8 on User Interface Objective ID cannot be found. Care Plan Objective can be found in Clinical > Medical Record > Care Plans.

Version information

Added in v7.8.0