ID of the external provider who performed the patient's intervention.
object.PerformedByExtProviderID
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
int
Display ID of the external provider who performed the patient's intervention.
sub main()
Dim aPatient, aRecallPlans, 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 & "ID of the external provider who performed " &_
" the patient's intervention '" & aVisit.Description &_
"' is " & aVisit.PerformedByExtProviderID
next
GetVisitCollectionInfo = info & vbNewLine
end function
In Profile Client v8 on User Interface External Provider ID cannot be found. Performed By can be found in
.