The provider to whom the patient's intervention is assigned.
object.AssignedToDescription
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
string
Display the full name of the provider to whom the patient's intervention is assigned.
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 & "The provider to whom the intervention '" &_
aVisit.Description & "' is assigned is " & aVisit.AssignedToDescription
next
GetVisitCollectionInfo = info & vbNewLine
end function
In Profile Client v8 on User Interface Assigned To Description can be found in
.