ISPatient.AddWaitListItem

Description

This function adds a new wait list item for the patient.

Syntax

object.AddWaitListItem()

Part Attribute Type Description
object Required
The object always implements the ISPatient interface

Return Value

ISWaitList

Returns the added wait list item.

Example

Add a new wait list item for the patient for the selected date.

Dim aPatient  
Dim aNewWaitListItem
Dim aMessage

Set aPatient = Profile.SelectPatient
set aNewWaitListItem = aPatient.AddWaitListItem
aNewWaitListItem.OpenedOn = #11/29/2018#

aMessage = aMessage & vbNewLine
aMessage = aMessage & "New Wait List item was added successfully!" 

Profile.MsgBox (aMessage)     
Note:

In Profile Client v8 on User Interface Wait List Item can be added and found in Patient > Alter Patient > Wait List.

Version information

Added in v7.8.0