ISReferralsFilter.ReferredToProv

Description

This filter property is used to load the patient's referrals by an internal provider that the referral was for.

Syntax

object.ReferredToProv

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

Return Value

string

Example

Display the number of the patient's referrals filtered by the internal provider that the referral was for.

Dim aPatient
Dim aReferralsFilter
Dim aReferrals
Dim aMessage

Set aPatient = Profile.SelectPatient
set aReferralsFilter = Profile.CreateReferralsFilter

aReferralsFilter.Patient = aPatient.Id
aReferralsFilter.ReferredToProv = "VE"

set aReferrals = Profile.LoadReferrals(aReferralsFilter)

aMessage = aMessage & "The number of the patient's referrals " &_
  "filtered by the provider (" &aReferralsFilter.ReferredToProv &_
  ") the referral was for is " & aReferrals.Count

Profile.MsgBox (aMessage)   
Note:

In Profile Client v8 on User Interface Referred To Prov cannot be found.

Version information

Added in v7.8.0