ISPatientRecallPlan.GetProviderInfo

Description

This function returns additional information about the patient's care plan that would be useful for a provider to know.

Syntax

object.GetProviderInfo()

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

Return Value

ISHelpInfo

Returns the additional information about the patient's care.

Example

Display the additional information about the patient's care.

Dim aPatient
Dim aRecallPlans
Dim aPlan
Dim aHelpInfo

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

for each aPlan in aRecallPlans
  set aHelpInfo = aPlan.GetProviderInfo
  if aHelpInfo is nothing then
    aMessage = aMessage & vbNewLine & "No Patient Info"
  else
    aMessage = aMessage & vbNewLine & "Information about the patient's " &_
      "care plan '" & aPlan.Description & "' useful for a provider: " &_
      Profile.Rtf2Plain(aHelpInfo.GetBody)
  end if
next

Profile.MsgBox (aMessage)   
Note: The source of the information is the Provider Info tab of the care plan template.

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