Globally Unique Identifier of the patient's intervention.
object.GUID
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
string
Display Globally Unique ID of the patient's intervention.
sub main()
Dim aPatient
Dim aRecallPlans
Dim aMessage
Dim aPlan
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
set aPlan = aVisit.ParentPlan
info = info & vbNewLine & aVisit.Description & " " &_
": GUID = " & aVisit.GUID
next
GetVisitCollectionInfo = info
end function
In Profile Client v8 on User Interface GUID cannot be found.