This filter property is used to load the patient's referrals by the place of service the referral was for.
object.ReferredToPos
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISReferralsFilter interface |
string
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)
In Profile Client v8 on User Interface Referred To Pos cannot be found.