This function creates the filter for loading actions.
object.CreateRecallActionFilter()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
Display the number of the actions loaded on the basis of the selected filter, their descriptions and codes.
Dim aPatient
Dim aFilter
Dim aRecallActions
Dim aRecallAction
Dim aMessage
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateRecallActionFilter
aFilter.PatientId = aPatient.Id
set aRecallActions = Profile.LoadRecallActions(aFilter)
aMessage = "Actions Count = " & aRecallActions.Count
for i = 0 to aRecallActions.Count - 1
set aRecallAction = aRecallActions.Item(i)
aMessage = aMessage & vbNewLine & "Action: " &_
aRecallAction.Description & vbNewLine & "Code: " & aRecallAction.Code
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Recall Actions can be found in
.