ISPatientRecallVisit.GetProviderInfo

Description

This function returns information about the intervention that would be useful for a health care provider.

Syntax

object.GetProviderInfo()

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

Return Value

ISHelpInfo

Returns the information about the intervention for a health care provider.

Example

Display the information about the intervention for a health care provider.

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 & aVisit.Description
    set aProviderInfo = aVisit.GetProviderInfo
    if aProviderInfo is nothing then
      info = info & vbNewLine & "No Provider Info"
    else
      info = info & vbNewLine & Profile.Rtf2Plain(aProviderInfo.GetBody)
    end if
  next
  GetVisitCollectionInfo = info
end function    
Note: The source of this information is the Provider Info tab of the service code on which the intervention is based.

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

Version information

Added in v7.8.0