ID of the patient eligible for services.
object.PatientId
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientEligibility interface |
int
Display ID of the patient eligible for services.
Dim aPatient
Dim aPatEligibility
Dim aPatientId
Set aPatient = Profile.SelectPatient
set aPatEligibility = Profile.GetLastPatientEligibility(aPatient.ID)
if aPatEligibility is nothing then
Profile.MsgBox ("There is no eligibility for this patient!")
else
aPatientId = aPatEligibility.PatientId
Profile.MsgBox (aPatientId)
end if
In Profile Client v8 on User Interface Patient Id cannot be found.