ID of the disease code that indicates what the procedure is for.
object.IndicationId
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientProblem interface |
int
Display the codes, descriptions and indications for the patient's problems of 'Procedures' type.
Dim aPatient
Dim aProblemList
Dim aCategory
Dim aProblems
Dim aProblem
Dim aMessage
Set aPatient = Profile.SelectPatient
set aProblemList = aPatient.ProblemList
set aCategory = aProblemList.Categories.Item(2) 'Procedures
aMessage = aMessage & vbNewLine &_
"---------" & aCategory.Description & "---------" & vbNewLine & vbNewLine
set aProblems = aCategory.Problems
if aProblems.Count = 0 then
aMessage = aMessage & "No procedures"
else
for each aProblem in aProblems
aMessage = aMessage & " " & "Code: " & aProblem.DxCode &_
"; Description: " & aProblem.DxDescription
if aProblem.IndicationId = 0 then
aMessage = aMessage & "; No Indication " & vbNewLine
else
aMessage = aMessage & "; Indication: " &_
Profile.LoadDiseaseById(aProblem.IndicationId).Description & vbNewLine
end if
next
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Indication Id cannot be found, but Indication can be found in
, in or in .