The date when the issue that the patient's problem of 'Procedures' type is addressing started.
object.IndicationDate
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientProblem interface |
DateTime
Display the codes, descriptions, indications for the patient's problems of 'Procedures' type and the dates when the issues that the procedures are addressing started.
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
if aProblem.IndicationId = 0 then
aMessage = aMessage & " " & "Code: " & aProblem.DxCode &_
"; Description: " & aProblem.DxDescription & "; No Indication " & vbNewLine
else
aMessage = aMessage & " " & "Code: " & aProblem.DxCode &_
"; Description: " & aProblem.DxDescription & "; Indication: " &_
aProblem.IndicationDescription & " (" & aProblem.IndicationDate & ")" &_
vbNewLine
end if
next
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Indication Date can be found in
, in or in .