This filter property is used to load the collection of wait lists by the priority.
object.Priority
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISWaitListFilter interface |
int
Display the number of the case wait lists loaded on the basis of the selected filter and the dates when they were opened and closed.
Dim aFilter
Dim aCaseWaitLists
Dim aCaseWaitList
Dim aMessage
Set aFilter = Profile.CreateCaseWaitListFilter
aFilter.Priority = Profile.LoadShortCodeByCodeType("1", 176).ID
set aCaseWaitLists = Profile.LoadCaseWaitLists(aFilter)
aMessage = "The number of the case wait lists with the priority (" &_
aFilter.Priority & ") is " & aCaseWaitLists.Count
for i = 0 to aCaseWaitLists.Count - 1
set aCaseWaitList = aCaseWaitLists.Item(i)
aMessage = aMessage & vbNewLine & (i + 1) & ") " & _
"The reason of the wait list entry is " & aCaseWaitList.Reason
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Case ID cannot be found, but Wait Lists can be found in
.