Constructor
Definition
Constructor of an appointment object.
Use
If you do not specify an ID or GUID, a new appointment is created and is only stored on the database when the SAVE method is called. If you do specify an ID or GUID, a link is created to an existing appointment in the database. The database is only accessed if data is read or set. Therefore, no existence check takes place.
Structure
Import Parameters
-
GUID (optional)
Worldwide unique ID of an existing appointment. If the value is initial, a new appointment is instantiated.
-
INTERNAL_ID
Internal use. Only use the internal ID if you have to use function modules from the old interface.
-
CLASS (optional)
Specifies where the appointment is to be stored. In most cases, the value CL_APPOINTMENT=>CL_FULL_APPOINTMENT is appropriate and is therefore set as default. If, however, you only require limited functions, the value CL_APPOINTMENT=>CL_SMALL_APPOINTMENT can also be used. The value CL_APPOINTMENT=>CL_TRANSIENT_APPOINTMENT is only used internally.