ISReferralsFilter.ReferredToPos

Description

This filter property is used to load the patient's referrals by the place of service the referral was for.

Syntax

object.ReferredToPos

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 place of service 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.ReferredToPos = "COLUMBIA"

set aReferrals = Profile.LoadReferrals(aReferralsFilter)

aMessage = aMessage & "Filter: ReferredToPos '" &_
  aReferralsFilter.ReferredToPos & "'" & vbNewLine &_
  "Number of the referrals loaded by the specified filter = " & aReferrals.Count

Profile.MsgBox (aMessage)  
Note:

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

Version information

Added in v7.8.0