OpenDevice - Events Guide

OpenDevice Events Guide
Copyright 2012 Lenel Systems International, Inc.
May 21, 2012
1
Table of Contents
Open Device Events ...................................................................................................................... 3
Granted Access Events ................................................................................................................. 8
Denied Events .............................................................................................................................. 12
Emergency Events ....................................................................................................................... 22
Area Control Events ................................................................................................................... 24
System Events .............................................................................................................................. 27
Elevator Events ........................................................................................................................... 72
Asset Events ................................................................................................................................. 76
Fire Events ................................................................................................................................... 79
Intercom Events .......................................................................................................................... 92
Video Events ................................................................................................................................ 99
Transmitter Events ................................................................................................................... 112
Biometric Events ....................................................................................................................... 122
Muster Events............................................................................................................................ 123
Generic Events .......................................................................................................................... 124
Point Of Sale Events ................................................................................................................. 126
Status Messages ......................................................................................................................... 140
Index ........................................................................................................................................... 141
Copyright 2012 Lenel Systems International, Inc.
May 21, 2012
2
Open Device Events
Open Device Events Revision History
Date
Author
Notes
10/10/2007
R. Cortese
· Added missing Category 0 events up through
the 6.0.xxx release
03/27/2003
M. Serafin
· Added a section with some examples.
03/25/2003
M. Serafin
· Added additional events that have been added
for the 5.10.3xx releases (these are located in
the Denied, System, Intercom, Video, and
Generic event types).
12/10/2002
M. Serafin
· Added note indicating that a copy of the
LNLMESSAGE structure was created for
backwards compatibility.
· The following events have been added:
L_SYSTEM_MAX_BIO_TEMPLATES_REA
CHED,
L_SYSTEM_ACKNOWLEDGMENT_ACTI
ON_EXECUTED,
L_SYSTEM_ACKNOWLEDGMENT_ACTI
ON_FAILED
Overview
The Lenel Communication Server receives messages from various Device Translators that are
then passed on to programs like Alarm Monitoring and also saves the messages to the database.
The majority of these messages represent events that have occurred on a hardware device. Since
the various hardware devices return these events differently, there needs to be a common method
so that the Lenel Communication Server doesn’t need to care which hardware device sent the
message. The Device Translator for the hardware would be the one responsible for translating
the device specific event message into the generic event message that the Lenel Communication
server and other applications understand.
This section of the document goes into a little more detail explaining each individual event.
Each event will be based on two IDs. The first ID is the sb_EventType and the second ID is the
sb_EventID which is unique for the sb_EventType. These events are stored in the database
based on the sb_EventType and sb_EventID. Besides the number for the event, an event will
also be given a name and also a description. The description will explain things like how and
when this event can be generated. The current list of available sb_EventTypes are listed below:
sb_EventTypes:
0 – Access Granted
1 – Access Denied
2 – Emergency
Copyright 2012 Lenel Systems International, Inc.
3
3 – Area Control
4 – System
5 – Asset
6 – Host Message (Lenel Communication Sever internal use)
7 – Fire
8 – Fire (not currently being used)
9 – Fire (not currently being used)
10 – Intercom
11 – Video
12 – Transmitter
13-17 – Reserved
18 – Biometric
19 – Trouble
20 – Digitize
21 – Burglary
22 – Temperature
23 – Gas
24 – Relay Sounder
25 – Medical
26 – Water
27 – C900
28 – Open/Close
29 – Mustering
30 – Generic
31 – Point of Sale
Also associated with each event is a unique ID which is currently only being used on a very
limited basis and is not used when passing back events from the hardware.
Some events will have information about an Event Pair, this includes the Pair Type (Initiating or
Restoring) and ID of the event it is paired with. These are used for events that actually occur in
pair with another event. One example is Door Forced Open and Door Forced Open Cancelled.
The Door Forced Open is an Initiating event and the Door Forced Open Cancelled is a Restoring
event, so these would be the Pair Types. The Event Pair for the Door Forced Open would be the
number of the Door Forced Open Cancelled and vice versa for the Door Forced Open Cancelled
event.
When an event is received from the hardware by a Device Translator, the Device Translator
needs to translate the event and fill out the LNLMESSAGE structure to be passed on to the Lenel
Communication Server. Certain events will also need to pass back additional information like
what the input number was for an input that was activated or any other additional information
that is required. The LNLMESSAGE structure is explained in more detail in the
IDistributeEvent documentation. The events listed below will list the fields that should be filled
in for each event.
Copyright 2012 Lenel Systems International, Inc.
4
Note: For releases after the 5.10.2xx release, the existing LNLMESSAGE was renamed
OLDLNLMESSAGE for backwards compatibility.
There are a few fields of the LNLMESSAGE structure that should always be filled in. These are
described below and are the same for all of the events so they have not been repeated for every
event.
sl_Size
sb_MessageType
sl_SerialNumber
sl_Time
Size of this structure. This variable can be set
using a statement like: sizeof(LNLMESSAGE).
Type of message:
0 - LNLMSG_TYPE_EVENT
1 - LNLMSG_TYPE_STATUS
2 - LNLMSG_TYPE_VIDEOEVENT
3 – Reserved for Lenel Communication Server
internal use.
All the events listed below in this document are of
type LNLMSG_TYPE_EVENT unless otherwise
noted.
Serial number of the event. The Serial Number
along with the Panel ID is used to create a unique
index in the database for the events. When using
the base Device Translator template the following
method can be used to return the serial number:
GetPanelEventSerialNumber().
Time of the event. This time is represented in
UTC time (also known as GMT time). Some
devices may not have a concept of time so the
Device Translator is responsible of assigning a
time to the event. One method located in that can
be used is:
g_oTimeConverter.GetCurrentGmtTime().
When possible the time should be grabbed from
the device.
Examples
The following examples will show a few different ways of using the LNLMESSAGE for passing
back event messages and status messages. The WriteEventsToClients method (located in
DeviceTranslator.h) can be used for sending these events on to the Communication Server. See
the documentation on the IDistributeEvent interface for more information.
Below is an example of sending a Communication Restored event:
LNLMESSAGE ls_Event;
memset( &ls_Event, '\0', sizeof(ls_Event));
Copyright 2012 Lenel Systems International, Inc.
5
ls_Event.sl_Size = sizeof(LNLMESSAGE);
ls_Event.sl_SerialNumber = GetPanelEventSerialNumber();
ls_Event.sl_Time = g_oTimeConverter.GetCurrentGmtTime(); //time(NULL);
ls_Event.ss_AccessPanelID = m_PanelID;
ls_Event.sb_EventType = L_EVENTTYPE_SYSTEM;
ls_Event.sb_EventID = L_SYSTEM_COMM_RESTORED;
WriteEventsToClients (&ls_Event);
The first thing that is done is initialize the LNLMESSAGE structure to all zeroes, this is the
default. The size of the structure should also be set, validation is done in the Communication
Server so that it can determine that it is receiving a valid message. The serial number also needs
to be set and this is done by calling GetPanelEventSerialNumber. The serial number along with
the panel ID is a unique ID that is associated to the event and is used when saving the event to
the database and also by clients that receive the event. The time also needs to be set to UTC. In
the example above a method is used to grab the current UTC time from the local machine. If the
device has its own internal clock and can store events you will want to use the time from the
device and not the local machine. Next the device ID is set, for this event we are generating it
for the panel so only the Panel ID is set. If it is for a downstream device the sb_DeviceID and
sb_InputDevID variables could also be set to reflect this. The event to use will also need to be
set as well, and this consists of the event type (sb_EventType) and the event ID (sb_EventID).
This is the basic information that needs to be filled in.
Here is another example that sends an intercom event indicating that a call has been placed to an
open subscriber.
LNLMESSAGE ls_Event;
memset( &ls_Event, '\0', sizeof(ls_Event));
ls_Event.sl_Size = sizeof(LNLMESSAGE);
ls_Event.sl_SerialNumber = GetPanelEventSerialNumber();
ls_Event.sl_Time = g_oTimeConverter.GetCurrentGmtTime();
ls_Event.ss_AccessPanelID = m_PanelID;
ls_Event.sb_DeviceID = station1;
ls_Event.sb_EventType = L_EVENTTYPE_INTERCOM;
ls_Event.sb_EventID = L_INTERCOM_CALL_TO_OPEN;
ls_Event.sb_EventDataType = EVENT_DATA_TYPE_INTERCOM;
ls_Event.su_EventData.us_IntercomData.sl_IntercomData = station2;
WriteEventsToClients (&ls_Event);
In this example it is pretty similar to the first example with a few differences. The first
difference is that this is an event for a downstream device (an intercom station off of an intercom
exchange) and it actually is using the event data union to pass back additional data with this
event. You will see that it sets sb_EventDataType to EVENT_DATA_TYPE_INTERCOM to
Copyright 2012 Lenel Systems International, Inc.
6
indicate that the intercom data structure is being used, and it then sets sl_IntercomData in this
structure to station2, which is the intercom station that the first intercom station (station1) called.
The next example below shows an example of how to send an LNLMESSAGE for status. Status
messages are not saved to the database and do not display as an event in Alarm Monitoring.
They are handled behind the scenes to update the status in Alarm Monitoring. The example
below is used to indicate the free_memory available in the panel:
LNLMESSAGE ls_Event;
memset( &ls_Event, '\0', sizeof(ls_Event));
ls_Event.sl_Size = sizeof(LNLMESSAGE);
ls_Event.sl_Time = g_oTimeConverter.GetCurrentGmtTime();
ls_Event.sl_SerialNumber = GetPanelEventSerialNumber();
ls_Event.ss_AccessPanelID = m_PanelID;
ls_Event.sb_MessageType = LNLMSG_TYPE_STATUS;
ls_Event.sb_EventDataType = EVENT_DATA_TYPE_STATUSREQUEST;
ls_Event.su_EventData.us_StatusRequest.sl_StatusType =
DATA_SRQ_PANEL_MEM_FREE;
ls_Event.su_EventData.us_StatusRequest.sl_Status = free_memory;
WriteEventsToClients ( &ls_Event );
You will notice that these messages are created in a similar fashion to a basic event. First the
LNLMESSAGE is initialized to all zeroes and the size is set. Next the time and the serial
number are set. These are really not required for these messages but it does not hurt to set them.
The panel ID is also set. In this example you will see that the sb_MessageType is set to
LNLMSG_TYPE_STATUS to indicate a status message. In the earlier examples this was not set
because the default is LNLMSG_TYPE_EVENT (0). The DATA_STATUSREQUEST structure
is used to pass back the details of the status so the sb_EventDataType needs to be set to
EVENT_DATA_TYPE_STATUSREQUEST. Then the type of status request needs to be set
and in this case we are setting sl_StatusType to DATA_SRQ_PANEL_MEM_FREE and then
setting the status via sl_Status to the available free memory in the panel. There are other defines
listed in lmsgtype.h that contain _SRQ_ in the define which are for the other statuses that can be
sent.
Copyright 2012 Lenel Systems International, Inc.
7
Granted Access Events
Access Granted
This event is used to indicate that the cardholder was granted access.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
1
0 (L_EVENTTYPE_GRANTED)
0 (L_GRANTED_ACCESS)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID of cardholder.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted On Facility Code
Indicates an access granted based on facility code.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
2
0 (L_EVENTTYPE_GRANTED)
1 (L_GRANTED_FACILITYCODE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Facility code.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted No Entry Made
Indicates an access granted but no entry was made.
ID
sb_EventType
sb_EventID
3
0 (L_EVENTTYPE_GRANTED)
2 (L_GRANTED_NOENTRYMADE)
Copyright 2012 Lenel Systems International, Inc.
8
ss_AccessPanelID
sb_DeviceID
sb_InputArg
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID of cardholder.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted On Facility Code, No Entry Made
This event indicates an access granted based on facility code, but no entry was made.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
4
0 (L_EVENTTYPE_GRANTED)
3 (L_GRANTED_FCNOENTRYMADE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Facility code.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted: Reader Unlocked
Access to the reader was granted because the reader was in the unlocked mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
843
0 (L_EVENTTYPE_GRANTED)
8 (L_GRANTED_READER_UNLOCKED)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Open Door Command Issued - Door Used
A command was issued to open a door contact and the door was opened.
Copyright 2012 Lenel Systems International, Inc.
9
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1938
0 (L_EVENTTYPE_GRANTED)
10
(L_GRANTED_HOST_OPEN_DOOR_USED)
Panel ID
Device ID (Reader)
Open Door Command Issued - Door Not Used
A command was issued to open a door contact and the door was not opened.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1939
0 (L_EVENTTYPE_GRANTED)
10
(L_GRANTED_HOST_OPEN_DOOR_NOT_USED)
Panel ID
Device ID (Reader)
Copyright 2012 Lenel Systems International, Inc.
10
Copyright 2012 Lenel Systems International, Inc.
11
Denied Events
Invalid Card Format
This event is used to indicate an invalid card format was detected.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCNA.sl_CardNumber
6
1 (L_EVENTTYPE_DENIED)
0 (L_DENIED_INVALIDCARDFORMAT)
ID of panel.
ID of reader.
EVENT_DATA_TYPE_CNA
0
Denied Count Exceeded
Currently this event is not being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
Sb_DeviceID
7
1 (L_EVENTTYPE_DENIED)
1 (L_DENIED_DENYCOUNTEXCEEDED)
Panel ID.
Device ID (Reader).
Copyright 2012 Lenel Systems International, Inc.
12
Denied, PIN Only Request
Indicates an attempt to access a reader using only a PIN code.
ID
sb_EventType
sb_EventID
8
1 (L_EVENTTYPE_DENIED)
2 (L_DENIED_REQUESTBYPINONLY)
Invalid Facility Code
Event that indicates that an invalid facility code.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
9
1 (L_EVENTTYPE_DENIED)
3 (L_DENIED_INVALIDFACILITYCODE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_FC
su_EventData.us_DataFC.sl_FacilityCode Invalid facility code.
su_EventData.us_DataFC.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Invalid Badge
Event that indicates an invalid badge.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
10
1 (L_EVENTTYPE_DENIED)
4 (L_DENIED_INVALIDBADGE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Invalid badge number.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Copyright 2012 Lenel Systems International, Inc.
13
Invalid Issue Code
Event that indicates an invalid issue code.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
11
1 (L_EVENTTYPE_DENIED)
5 (L_DENIED_INVALIDISSUECODE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Invalid PIN Number
Event that indicates an invalid PIN number was used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
12
1 (L_EVENTTYPE_DENIED)
6 (L_DENIED_INVALIDPIN)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Invalid Access Level
Event that indicates that the cardholder doesn’t have the proper access level.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
13
1 (L_EVENTTYPE_DENIED)
7 (L_DENIED_INVALIDACCESSLEVEL)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
Copyright 2012 Lenel Systems International, Inc.
14
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge number.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Inactive Badge
Event that indicates that the badge is inactive.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
14
1 (L_EVENTTYPE_DENIED)
8 (L_DENIED_INACTIVEBADGE)
ID of panel.
ID of reader.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge number.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Denied, Reader Excluded
Generated when access was denied because the reader exclusion list was violated. This happens
when using precision access exclusion and the cardholder has access to the reader via an access
level, but the precision access exclusion list has removed access.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
15
1 (L_EVENTTYPE_DENIED)
9 (L_DENIED_READEREXCLUDED)
Panel ID.
Reader ID.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Copyright 2012 Lenel Systems International, Inc.
15
Denied, No Command Authority
Event indicating that the deny was because of no command authority.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
16
1 (L_EVENTTYPE_DENIED)
10 (L_DENIED_CMDAUTHORITY)
Panel ID.
Reader ID.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Denied UnMask – Active Zones in Group
Event indicating that the unmasking was denied because there were active zones in the group.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputArg
17
1 (L_EVENTTYPE_DENIED)
11 (L_DENIED_DENIEDMASK)
Panel ID.
Reader ID.
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Use Limit Exceeded
Event that indicates that a badge was denied because the use limit was exceeded.
ID
sb_EventType
sb_EventID
sb_InputArg
18
1 (L_EVENTTYPE_DENIED)
12 (L_DENIED_USELIMITEXCEEDED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
Copyright 2012 Lenel Systems International, Inc.
16
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge number.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Denied Low Battery
When the main battery level in the hardware (reader) begins to fall lower than the "alarm zone",
there will not be sufficient power to perform token validation. The reader will therefore deny
access to the token presented and this event is generated. This event serves to force the operator
to change the battery, before it is too late.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
801
1 (L_EVENTTYPE_DENIED)
15 (L_DENIED_LOW_BATTERY)
Panel ID.
Device ID.
EVENT_DATA_TYPE_CA
Badge ID.
Issue code of the badge (-1 indicates that the
issue code is not available).
Biometric Mismatch
Event indicating that access to the reader was denied because of a biometric mismatch.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
812
1 (L_EVENTTYPE_DENIED)
17 (L_DENIED_BIOMETRIC_MISMATCH)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Access Denied: Reader Locked
Access to the reader was denied because the reader is in locked mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
844
1 (L_EVENTTYPE_DENIED)
18 (L_DENIED_READER_LOCKED)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
17
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Denied - No Host Approval
Access to the reader was denied because no host approval was received.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
1508
1 (L_EVENTTYPE_DENIED)
26 (L_DENIED_NO_HOST_APPROVAL)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Denied - Unauthorized Assets
Access to the reader was denied because of unauthorized assets.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
1509
1 (L_EVENTTYPE_DENIED)
27 (L_DENIED_UNAUTHORIZED_ASSETS)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Access Denied: No Biometric Template
Generated when the cardholder did not have a biometric template loaded in the database, so a
verification could not be done.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
1550
1 (L_EVENTTYPE_DENIED)
28 (L_DENIED_NO_BIO_RECORD)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Copyright 2012 Lenel Systems International, Inc.
18
su_EventData.us_DataCA.sl_IssueCode
Issue Code (-1 if not used)
Access Denied: Biometric Reader Offline
Generated when the alternate biometric reader could not be contacted for verification (was
offline
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
1551
1 (L_EVENTTYPE_DENIED)
29 (L_DENIED_NO_BIO_DEVICE)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Smart Card Authentication Failed
Generated when a smart card authentication failed
ID
sb_EventType
sb_EventID
1789
1 (L_EVENTTYPE_DENIED)
33
(L_DENIED_SC_AUTHENTICATION_FAILED)
ss_AccessPanelID
Panel ID
sb_DeviceID
Device ID (Reader)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Card Number
su_EventData.us_DataCA.sl_IssueCode
Issue Code
Access Denied: Escort Timeout Expired
This event indicates that access was denied because a person requiring an escort attempted
access but an escort did not present their credentials in the time period
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
1896
1 (L_EVENTTYPE_DENIED)
34 (L_DENIED_ESCORT_TIMEOUT)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Copyright 2012 Lenel Systems International, Inc.
19
Access Denied: Area Occupied
An event indicating that access was denied due to the room being empty.
ID
sb_EventType
sb_EventID
1911
1 (L_EVENTTYPE_DENIED)
36
(L_DENIED_SPC_TWOMAN_MAY_NOT_EXIT)
ss_AccessPanelID
Panel ID
sb_DeviceID
Device ID (Reader)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Card Number
Access Denied: No Occupant Approval
An event indicating that access was denied due to no occupant approval.
ID
sb_EventType
sb_EventID
1912
1 (L_EVENTTYPE_DENIED)
37
(L_DENIED_SPC_TWOMAN_NO_APPROVAL)
ss_AccessPanelID
Panel ID
sb_DeviceID
Device ID (Reader)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Card Number
Denied, Badge Not in Panel
A badge was used at a reader but does not exist in the panel due to the Selective Cardholder
Download configuration.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
1914
1 (L_EVENTTYPE_DENIED)
38 (L_DENIED_BADGE_NOT_IN_PANEL)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
-1
Access Denied: Area Empty
An event indicating that access was denied due to the room being empty.
Copyright 2012 Lenel Systems International, Inc.
20
ID
sb_EventType
sb_EventID
1928
1 (L_EVENTTYPE_DENIED)
35
(L_DENIED_SPC_TWOMAN_AREA_EMPTY)
ss_AccessPanelID
Panel ID
sb_DeviceID
Device ID (Reader)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Card Number
Access Denied: Asset Required
An event indicating that access was denied since no asset was presented for the access attempt.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
1984
1 (L_EVENTTYPE_DENIED)
39 (L_DENIED_ASSET_REQUIRED)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Access Denied
This event is used to indicate that the cardholder was denied access.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
2289
1 (L_EVENTTYPE_DENIED)
65 (L_DENIED_ACCESS)
ID of panel.
ID of reader.
EVENT_DATA_TYPE_CA
Badge ID of cardholder.
Issue code of the badge (-1 indicates that the issue
code is not available).
Copyright 2012 Lenel Systems International, Inc.
21
Emergency Events
Access Granted Under Duress
Event that indicates that cardholder was granted access under duress.
ID
sb_EventType
sb_EventID
sb_InputArg
20
2 (L_EVENTTYPE_EMERGENCY)
0 (L_EMERGENCY_GRANTEDDURESS)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Denied Under Duress
Event that indicates that cardholder was denied access under duress.
ID
sb_EventType
sb_EventID
sb_InputArg
21
2 (L_EVENTTYPE_EMERGENCY)
1 (L_EMERGENCY_DENIEDDURESS)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted Under Duress – No Entry Made
Event that indicates that cardholder was granted access under duress but no entry was made.
ID
sb_EventType
sb_EventID
sb_InputArg
sb_EventDataType
22
2 (L_EVENTTYPE_EMERGENCY)
2 (L_EMERGENCY_GRANTEDNOENTRY)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
EVENT_DATA_TYPE_CA
Copyright 2012 Lenel Systems International, Inc.
22
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Copyright 2012 Lenel Systems International, Inc.
23
Area Control Events
Anti-Passback Violation
Event that is used to indicate an anti-passback violation.
ID
sb_EventType
sb_EventID
sb_InputArg
23
3 (L_EVENTTYPE_AREACONTROL)
0 (L_AREA_ANTIPASSBACKVIOLATION)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Area Limit Exceeded
Event that indicates that an area limit has been exceeded.
ID
sb_EventType
sb_EventID
sb_InputArg
24
3 (L_EVENTTYPE_AREACONTROL)
1 (L_AREA_AREALIMITEXCEEDED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Timeout Exceeded – No Second Card
Event that indicates that a second card was not presented to the reader during the time limit when
using two-man control.
ID
sb_EventType
sb_EventID
sb_InputArg
25
3 (L_EVENTTYPE_AREACONTROL)
2 (L_AREA_TIMEOUTEXCEEDED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
Copyright 2012 Lenel Systems International, Inc.
24
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Area Closed
Event that indicates that the area is closed.
ID
sb_EventType
sb_EventID
sb_InputArg
26
3 (L_EVENTTYPE_AREACONTROL)
3 (L_AREA_AREACLOSED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted - Anti-Passback Used
Event that indicates an access granted using anti-passback.
ID
sb_EventType
sb_EventID
sb_InputArg
27
3 (L_EVENTTYPE_AREACONTROL)
4 (L_AREA_GRANTEDAPBUSED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Access Granted - Anti-Passback Not Used
Event that indicates an access granted not using anti-passback.
ID
sb_EventType
sb_EventID
sb_InputArg
28
3 (L_EVENTTYPE_AREACONTROL)
5 (L_AREA_GRANTEDAPBNOTUSED)
Used to indicate the elevator floor number when
event is generated for an elevator reader (0
Copyright 2012 Lenel Systems International, Inc.
25
indicates no floor number associated with event).
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Badge ID.
su_EventData.us_DataCA.sl_IssueCode
Issue code of the badge (-1 indicates that the issue
code is not available).
Anti-Passback Invalid Exit Reader
Currently this event is not used.
ID
sb_EventType
sb_EventID
29
3 (L_EVENTTYPE_AREACONTROL)
6 (L_AREA_APB_INVALID_EXIT_RDR)
Anti-Passback Invalid Entry Reader
Currently this event is not used.
ID
sb_EventType
sb_EventID
30
3 (L_EVENTTYPE_AREACONTROL)
7 (L_AREA_APB_INVALID_ENTRY_RDR)
Copyright 2012 Lenel Systems International, Inc.
26
System Events
Not Configured
Event used to indicate that a device is not configured in the system.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
33
4 (L_EVENTTYPE_SYSTEM)
0 (L_SYSTEM_OFFLINE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Alarm Canceled
Indicates that an alarm active condition has been canceled.
Event Pair – Restoring (35).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
34
4 (L_EVENTTYPE_SYSTEM)
1 (L_SYSTEM_ONLINE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Alarm Active
Event used to indicate that an alarm active for a device.
Event Pair – Initiating (34)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
35
4 (L_EVENTTYPE_SYSTEM)
2 (L_SYSTEM_ALARM)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
27
Tamper Alarm Active
Currently this event is not being generated. See the cabinet tamper events.
ID
sb_EventType
sb_EventID
36
4 (L_EVENTTYPE_SYSTEM)
3 (L_SYSTEM_TAMPER)
Line Error Active
Event used to indicate a line error active condition.
Event Pair – Initiating (55)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
37
4 (L_EVENTTYPE_SYSTEM)
4 (L_SYSTEM_LINEERROR)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Shorted Line Alarm Active
Event used to indicate a shorted line alarm active condition.
Event Pair – Initiating (56)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
38
4 (L_EVENTTYPE_SYSTEM)
5 (L_SYSTEM_SHORTEDLINE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Open Line Alarm Active
Event used to indicate an open line alarm active condition.
Event Pair – Initiating (57)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
39
4 (L_EVENTTYPE_SYSTEM)
6 (L_SYSTEM_OPENLINE)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
28
sb_DeviceID
sb_InputDevID
sb_EventDataType
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Grounded Loop Alarm Active
Event used to indicate a grounded loop alarm active condition.
Event Pair – Initiating (58)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
40
4 (L_EVENTTYPE_SYSTEM)
7 (L_SYSTEM_GROUNDEDLOOP)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Door Forced Open
Event used to indicate that a door forced open condition exists.
Event Pair – Initiating (42)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
41
4 (L_EVENTTYPE_SYSTEM)
8 (L_SYSTEM_FORCEDOPEN)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Door Forced Open Canceled
Event used to indicate that a door forced open condition has been canceled.
Event Pair – Restoring (41)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
42
4 (L_EVENTTYPE_SYSTEM)
9 (L_SYSTEM_FORCEDCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
29
Door Held Open
Event used to indicate a door held open condition.
Event Pair – Initiating (44)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
43
4 (L_EVENTTYPE_SYSTEM)
10 (L_SYSTEM_HELDOPEN)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Door Held Open Canceled
Event used to indicate a door held open condition has been canceled.
Event Pair – Restoring (43)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
44
4 (L_EVENTTYPE_SYSTEM)
11 (L_SYSTEM_HELDOPEN)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Reader Input Tamper
Event used to indicate a reader input tamper. The sub device for this event is the reader.
Event Pair – Initiating (48)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
47
4 (L_EVENTTYPE_SYSTEM)
14 (L_SYSTEM_READERINPUT)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
30
Reader Input Tamper Canceled
This event is used to indicate a reader input tamper condition has been canceled. The sub device
for this event is the reader.
Event Pair – Restoring (47)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
48
4 (L_EVENTTYPE_SYSTEM)
15 (L_SYSTEM_READERINPUTCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Door Contact Tamper
Event used to indicate a door contact tamper condition. The sub device for this event is the
reader.
Event Pair – Initiating (50)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
49
4 (L_EVENTTYPE_SYSTEM)
16 (L_SYSTEM_DOORCONTACT)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Door Contact Tamper Canceled
Event used to indicate a door contact tamper condition has been canceled. The sub device for
this event is the reader.
Event Pair – Restoring (49)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
50
4 (L_EVENTTYPE_SYSTEM)
17 (L_SYSTEM_DOORCONTACTCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
EVENT_DATA_TYPE_STATUS
Cabinet Tamper
Event used to indicate a cabinet tamper on a device.
Copyright 2012 Lenel Systems International, Inc.
31
Event Pair – Initiating (52)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
51
4 (L_EVENTTYPE_SYSTEM)
18 (L_SYSTEM_CABINETTAMPER)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Canceled Cabinet Tamper
Event used to indicate a cabinet tamper has been canceled.
Event Pair – Restoring (51)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
52
4 (L_EVENTTYPE_SYSTEM)
19 (L_SYSTEM_CABINETCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Power Failure
Event used to indicate a power failure on a device.
Event Pair – Initiating (54)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
53
4 (L_EVENTTYPE_SYSTEM)
20 (L_SYSTEM_POWERFAILURE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Canceled Power Failure
Event used to indicate a power failure condition has been canceled.
Event Pair – Restoring (53)
ID
sb_EventType
sb_EventID
54
4 (L_EVENTTYPE_SYSTEM)
21 (L_SYSTEM_POWERCANCEL)
Copyright 2012 Lenel Systems International, Inc.
32
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Canceled Line Error
Event used to indicate that a line error condition has been canceled.
Event Pair – Restoring (37)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
55
4 (L_EVENTTYPE_SYSTEM)
22 (L_SYSTEM_LINEERRORCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Canceled Shorted Line
Event used to indicate that a shorted line condition has been canceled.
Event Pair – Restoring (38)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
56
4 (L_EVENTTYPE_SYSTEM)
23 (L_SYSTEM_SHORTEDLINECANCEL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Canceled Open Line
Event used to indicate that an open line condition has been canceled.
Event Pair – Restoring (39)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
57
4 (L_EVENTTYPE_SYSTEM)
24 (L_SYSTEM_OPENLINECANCEL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
33
Canceled Grounded Loop
Event used to indicate that a grounded loop condition has been canceled.
Event Pair – Restoring (40)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
58
4 (L_EVENTTYPE_SYSTEM)
25 (L_SYSTEM_GROUNDEDLOOPCANCEL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Panel Power Up Complete
Event used to indicate that the panel power up is complete.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
su_EventData.us_DataStatusChg.sw_ComStatus
61
4 (L_EVENTTYPE_SYSTEM)
28 (L_SYSTEM_POWERUPEVENT)
Panel ID.
EVENT_DATA_TYPE_STATUS
0
Full Panel Download Started
This event is used internally by the Lenel Communication Server to indicate that a full database
download has started.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_InputDevID
sb_EventDataType
78
4 (L_EVENTTYPE_SYSTEM)
45 (L_SYSTEM_DOWNLOAD_STARTED)
Panel ID.
Data type.
EVENT_DATA_TYPE_STATUSREQUEST
Database Error in Panel Download
This event is used internally by the Lenel Communication Server to indicate that a full database
download had an error (database)
ID
sb_EventType
79
4 (L_EVENTTYPE_SYSTEM)
Copyright 2012 Lenel Systems International, Inc.
34
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
46 (L_SYSTEM_DOWNLOAD_DB_ERROR)
Panel ID.
Device ID.
Data type.
EVENT_DATA_TYPE_STATUS
Driver Error In Panel Download
This event is used internally by the Lenel Communication Server to indicate that a full database
download had an error (driver)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
80
4 (L_EVENTTYPE_SYSTEM)
47 (L_SYSTEM_DOWNLOAD_DRIVER_ERROR)
Panel ID.
Device ID.
Data type.
EVENT_DATA_TYPE_STATUS
Full Panel Download Completed
This event is used internally by the Lenel Communication Server to indicate that a full database
download has completed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_InputDevID
sb_EventDataType
81
4 (L_EVENTTYPE_SYSTEM)
48 (L_SYSTEM_DOWNLOAD_FINISHED)
Panel ID.
Data type.
EVENT_DATA_TYPE_STATUSREQUEST
Relay Contact Activated
Event used to indicate that a relay contact has been activated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
86
4 (L_EVENTTYPE_SYSTEM)
53 (L_SYSTEM_OUTPUT_OPEN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
35
Relay Contact Deactivated
Event used to indicate that a relay contact has been deactivated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventDataType
87
4 (L_EVENTTYPE_SYSTEM)
54 (L_SYSTEM_OUTPUT_CLOSED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
EVENT_DATA_TYPE_STATUS
Host Executed Function List
Generated when a function list has been executed from the host.
ID
sb_EventType
sb_EventID
sb_EventDataType
88
4 (L_EVENTTYPE_SYSTEM)
55 (L_SYSTEM_HOSTTRIGGERED_FUNCTION)
EVENT_IV_TYPE_HOST
Door Shunt Command Executed From Reader
Event indicating that the door shunt command executed from the reader.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
89
4 (L_EVENTTYPE_SYSTEM)
56 (L_SYSTEM_DOOR_SHUNT_CMD)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ
Card Number (Optional)
Command Pin+10 Set From Reader
Event indicating that the Pin+10 command was executed at the reader.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
90
4 (L_EVENTTYPE_SYSTEM)
57
(L_SYSTEM_SET_FUNC_TRUE_CMD)
Panel ID
Reader ID.
Copyright 2012 Lenel Systems International, Inc.
36
sb_EventDataType
EVENT_IV_TYPE_CMD_REQ (Optional)
su_EventData.us_DataCmdReq.sl_CardNumber Card number (Optional)
Command Pin+20 Set From Reader
Event indicating that the Pin+20 reader command was executed at the reader.
ID
sb_EventType
sb_EventID
91
4 (L_EVENTTYPE_SYSTEM)
58
(L_SYSTEM_SET_FUNC_FALSE_CMD)
ss_AccessPanelID
Panel ID
sb_DeviceID
Reader ID.
sb_EventDataType
EVENT_IV_TYPE_CMD_REQ (Optional)
su_EventData.us_DataCmdReq.sl_CardNumber Card number (Optional)
Door Shunt Command Results - Canceled
Event indicating that the door shunt command results was a cancel.
ID
sb_EventType
sb_EventID
92
4 (L_EVENTTYPE_SYSTEM)
59
(L_SYSTEM_DOOR_SHUNT_CMD_RESULTS)
ss_AccessPanelID
Panel ID
sb_DeviceID
Reader ID.
sb_EventDataType
EVENT_IV_TYPE_CMD_RES
su_EventData.us_DataCmdRes.sb_Results ???
Command 4 Set From Reader
Reader command 4 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
95
4 (L_EVENTTYPE_SYSTEM)
62 (L_SYSTEM_SET_FUNC_CMD4)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Copyright 2012 Lenel Systems International, Inc.
37
Command 5 Set From Reader
Reader command 5 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
96
4 (L_EVENTTYPE_SYSTEM)
63 (L_SYSTEM_SET_FUNC_CMD5)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 6 Set From Reader
Reader command 6 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
97
4 (L_EVENTTYPE_SYSTEM)
64 (L_SYSTEM_SET_FUNC_CMD6)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 7 Set From Reader
Reader command 7 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
98
4 (L_EVENTTYPE_SYSTEM)
65 (L_SYSTEM_SET_FUNC_CMD7)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 8 Set From Reader
Reader command 8 was executed.
ID
sb_EventType
sb_EventID
99
4 (L_EVENTTYPE_SYSTEM)
66 (L_SYSTEM_SET_FUNC_CMD8)
Copyright 2012 Lenel Systems International, Inc.
38
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 9 Set From Reader
Reader command 9 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
100
4 (L_EVENTTYPE_SYSTEM)
67 (L_SYSTEM_SET_FUNC_CMD9)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 10 Set From Reader
Reader command 10 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
101
4 (L_EVENTTYPE_SYSTEM)
68 (L_SYSTEM_SET_FUNC_CMD10)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 11 Set From Reader
Reader command 11 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
102
4 (L_EVENTTYPE_SYSTEM)
69 (L_SYSTEM_SET_FUNC_CMD11)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Copyright 2012 Lenel Systems International, Inc.
39
Command 12 Set From Reader
Reader command 12 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
103
4 (L_EVENTTYPE_SYSTEM)
70 (L_SYSTEM_SET_FUNC_CMD12)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 13 Set From Reader
Reader command 13 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
104
4 (L_EVENTTYPE_SYSTEM)
71 (L_SYSTEM_SET_FUNC_CMD13)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 14 Set From Reader
Reader command 14 was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
105
4 (L_EVENTTYPE_SYSTEM)
72 (L_SYSTEM_SET_FUNC_CMD14)
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Command 15 Set From Reader
Reader command 15 was executed.
ID
sb_EventType
sb_EventID
106
4 (L_EVENTTYPE_SYSTEM)
73 (L_SYSTEM_SET_FUNC_CMD15)
Copyright 2012 Lenel Systems International, Inc.
40
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCmdReq.sl_CardNumber
Panel ID
Reader ID.
EVENT_IV_TYPE_CMD_REQ (optional)
Card number (optional)
Communications Lost
Event used to indicate that communication has been lost to the device.
Event Pair – Initiating (110)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_DeviceType
109
4 (L_EVENTTYPE_SYSTEM)
76 (L_SYSTEM_COMM_LOST)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
if sb_DeviceID is an input channel from a Video Camera then set this
variable to L_DEVICETYPE_CCTVCAMERA otherwise set it equal
to 0
Communications Restored
Event used to indicate that communication to the device has been restored.
Event Pair – Restoring (109)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_DeviceType
110
4 (L_EVENTTYPE_SYSTEM)
77 (L_SYSTEM_COMM_RESTORED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
if sb_DeviceID is an input channel from a Video Camera then set this
variable to L_DEVICETYPE_CCTVCAMERA otherwise set it equal
to 0
Local I/O Executed Function List
Event used to indicate that a Global I/O function list was executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_InputArg
111
4 (L_EVENTTYPE_SYSTEM)
78 (L_SYSTEM_GIO_FUNC_LIST)
Panel ID.
Operation executed on function list:
Copyright 2012 Lenel Systems International, Inc.
41
sb_IV
1 - False
2 - True
3 – Pulse
Function list ID.
Watch Tour Station Late
Currently this event is not being used.
ID
sb_EventType
sb_EventID
175
4 (L_EVENTTYPE_SYSTEM)
142 (L_SYSTEM_SYS_TOUR_LATE)
Disk Full Warning
Currently this event is not being used.
ID
sb_EventType
sb_EventID
181
4 (L_EVENTTYPE_SYSTEM)
146 (L_SYSTEM_SYS_DISK_FULL)
Database Error: Event Polling Stopped
Event generated by the Communication Server to indicate to Alarm Monitoring that the event
polling has stopped because of a database problem (events could not be written to the database).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
219
4 (L_EVENTTYPE_SYSTEM)
181 (L_SYSTEM_DB_ERR_POLLING_STOPPED)
Panel ID
Dialup Stored Command Limit Exceeded
Event generated by the Communication Server to indicate that the number of stored commands
for the dialup panel has been exceeded (based on the setting in the ACS.INI file).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
768
4 (L_EVENTTYPE_SYSTEM)
183 (L_SYSTEM_DIALUP_LOWWATERMARK)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
42
Dialup Last Connection Time Expired
Event generated by the Communication Server to indicate that a dialup has not called back
(connected) within a certain amount of time (configured in the ACS.INI file).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
769
4 (L_EVENTTYPE_SYSTEM)
184 (L_SYSTEM_DIALUP_LASTTIMEEXPIRED)
Panel ID
Low Voltage
Event used to indicate a low voltage condition for a device.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
775
4 (L_EVENTTYPE_SYSTEM)
190 (L_SYSTEM_LOW_VOLTAGE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Low Voltage Restored
Event used to indicate that a low voltage condition has been restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
776
4 (L_EVENTTYPE_SYSTEM)
191 (L_SYSTEM_LOW_VOLTAGE_RESTORED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Communication Path Switch - Primary to Secondary
Event used to indicate that the communications switched from the primary communication path
to the secondary communication path. This is used when dual paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
795
4 (L_EVENTTYPE_SYSTEM)
192 (L_SYSTEM_COMM_SWITCH_ALT
Panel ID.
Copyright 2012 Lenel Systems International, Inc.
43
Communication Path Switch - Secondary to Primary
Event used to indicate that the communications switched from the secondary communication
path to the primary communication path. This is used when dual paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
796
4 (L_EVENTTYPE_SYSTEM)
193 (L_SYSTEM_COMM_SWITCH_PRI)
Panel ID.
Secondary Communication Path Lost
Event used to indicate that the secondary communication path was lost. This is used when dual
paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
797
4 (L_EVENTTYPE_SYSTEM)
194 (L_SYSTEM_COMM_ALT_LOST)
Panel ID.
Secondary Communication Path Restored
Event used to indicate that the secondary communication path was restored. This is used when
dual paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
798
4 (L_EVENTTYPE_SYSTEM)
195 (L_SYSTEM_COMM_ALT_RESTORE)
Panel ID.
Primary Communication Path Lost
Event used to indicate that the primary communication path was lost. This is used when dual
paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
799
4 (L_EVENTTYPE_SYSTEM)
196 (L_SYSTEM_COMM_PRI_LOST)
Panel ID.
Copyright 2012 Lenel Systems International, Inc.
44
Primary Communication Path Restored
Event used to indicate that the primary communication path was restored. This is used when dual
paths are being used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
800
4 (L_EVENTTYPE_SYSTEM)
197 (L_SYSTEM_COMM_PRI_RESTORE)
Panel ID.
Reader Mode Facility Code
Whenever a reader mode becomes active, this event is generated to indicate the switchover to
this mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
802
4 (L_EVENTTYPE_SYSTEM)
198 (L_SYSTEM_RDR_MODE_FC)
Panel ID.
Device ID.
Reader Mode Card Only
Whenever a reader mode becomes active, this event is generated to indicate the switchover to
this mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
803
4 (L_EVENTTYPE_SYSTEM)
199
(L_SYSTEM_RDR_MODE_CARD_ONLY)
Panel ID.
Device ID.
Reader Mode First Card Unlock
Whenever a reader mode becomes active, this event is generated to indicate the switchover to
this mode.
ID
sb_EventType
sb_EventID
804
4 (L_EVENTTYPE_SYSTEM)
200
(L_SYSTEM_RDR_MODE_1ST_CARDUNLCK)
Copyright 2012 Lenel Systems International, Inc.
45
ss_AccessPanelID
sb_DeviceID
Panel ID.
Device ID.
Reader Mode Unlocked
Whenever a reader mode becomes active, this event is generated to indicate the switchover to
this mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
805
4 (L_EVENTTYPE_SYSTEM)
201 (L_SYSTEM_RDR_MODE_UNLOCKED)
Panel ID.
Device ID.
Reader Mode Locked
Whenever a reader mode becomes active, this event is generated to indicate the switchover to
this mode.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
806
4 (L_EVENTTYPE_SYSTEM)
202 (L_SYSTEM_RDR_MODE_LOCKED)
Panel ID.
Device ID.
Reader Reset
This event is generated whenever the firmware resets the reader. This can happen when the
firmware detects the reader needs to be reset. This occurs if the reader is brand new. This can
also be due to a failed/incomplete download, or other internal conditions that cause the firmware
to reset such as detecting possible corrupt memory, etc. In such cases, the firmware will rewrite
its entire storage with default values, thus overwriting the downloaded values. The user must
reprogram the lockset when this happens.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
807
4 (L_EVENTTYPE_SYSTEM)
203 (L_SYSTEM_READER_RESET2)
Panel ID.
Device ID.
Key Override
Key override.
Copyright 2012 Lenel Systems International, Inc.
46
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
808
4 (L_EVENTTYPE_SYSTEM)
204 (L_SYSTEM_KEY_OVERRIDE)
Panel ID.
Device ID.
Transfer, PDA To Lock
This event is generated when the device (lockset) is programmed / reprogrammed through a
download (from a PDA).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
809
4 (L_EVENTTYPE_SYSTEM)
205
(L_SYSTEM_TRANSFER_PDA_TO_LOCK)
Panel ID.
Device ID.
EVENT_DATA_TYPE_CA
Badge ID.
Issue code of the badge (-1 indicates that the
issue code is not available).
Transfer, History
This event is generated when the history data is transferred from a device to a parent device
(panel).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
810
4 (L_EVENTTYPE_SYSTEM)
206 (L_SYSTEM_TRANSFER_HISTORY)
Panel ID.
Device ID.
EVENT_DATA_TYPE_CA
Badge ID.
Issue code of the badge (-1 indicates that the
issue code is not available).
Transfer, Diagnostics
This event is generated whenever a user logs in to the device for diagnostics purposes.
ID
sb_EventType
811
4 (L_EVENTTYPE_SYSTEM)
Copyright 2012 Lenel Systems International, Inc.
47
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
207
(L_SYSTEM_TRANSFER_DIAGNOSTICS)
Panel ID.
Device ID.
EVENT_DATA_TYPE_CA
Badge ID.
Issue code of the badge (-1 indicates that the
issue code is not available).
Input Masked
Input became masked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
831
4 (L_EVENTTYPE_SYSTEM)
208 (L_SYSTEM_INPUT_MASKED)
Panel ID
Device ID
Input ID
Input Unmasked
Input became unmasked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
832
4 (L_EVENTTYPE_SYSTEM)
209 (L_SYSTEM_INPUT_UNMASKED)
Panel ID
Device ID
Input ID
Door Forced Open Masked
Door Forced Masked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
833
4 (L_EVENTTYPE_SYSTEM)
210 (L_SYSTEM_DOOR_FORCED_MASKED)
Panel ID
Device ID (Reader)
Copyright 2012 Lenel Systems International, Inc.
48
Door Forced Open Unmasked
Door Forced Unmasked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
834
4 (L_EVENTTYPE_SYSTEM)
211
(L_SYSTEM_DOOR_FORCED_UNMASKED)
Panel ID
Device ID (Reader)
Door Held Open Masked
Indicates that the mask for the door held open has become masked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
835
4 (L_EVENTTYPE_SYSTEM)
212
(L_SYSTEM_DOOR_HELDOPEN_MASKED)
Panel ID
Device ID (Reader)
Door Held Open Unmasked
Indicates that the mask for door held open became unmasked.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
836
4 (L_EVENTTYPE_SYSTEM)
213
(L_SYSTEM_DOOR_HELDOPEN_UNMASKED)
Panel ID
Device ID (Reader)
Reader Mode Pin or Card
Indicates that the reader mode changed to Pin or Card.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
837
4 (L_EVENTTYPE_SYSTEM)
214
(L_SYSTEM_RDR_MODE_PIN_OR_CARD)
Panel ID
Device ID (Reader)
Copyright 2012 Lenel Systems International, Inc.
49
Reader Mode Card and Pin
Indicates that the reader mode changed to Pin and Card.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
838
4 (L_EVENTTYPE_SYSTEM)
215
(L_SYSTEM_RDR_MODE_PIN_AND_CARD)
Panel ID
Device ID (Reader)
Panel Options Mismatch
Event that indicates that the current options in the panel differ from what is configured in the
database.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
842
4 (L_EVENTTYPE_SYSTEM)
216
(L_SYSTEM_PANEL_OPTIONS_MISMATCH)
Panel ID
Max Cardholders Reached
Event used to indicate that the max number of cardholders for the controller has been reached
during a database download. All remaining cardholders will not be sent to the panel.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
845
4 (L_EVENTTYPE_SYSTEM)
217
(L_SYSTEM_MAX_CARDHOLDERS_REACHED)
Panel ID
Max Assets Reached
Event used to indicate that the max number of assets for the controller has been reached during a
database download. All remaining assets will not be sent to the panel.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
846
4 (L_EVENTTYPE_SYSTEM)
218 (L_SYSTEM_MAX_ASSETS_REACHED)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
50
Failed To Report Expected Event
Indicates that a device that is supposed to report in has failed to do so.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1499
4 (L_EVENTTYPE_SYSTEM)
420 (L_SYSTEM_FAILED_TO_REPORT)
Panel ID
Scheduler Action Failed
Used to indicate that a scheduler action failed.
ID
sb_EventType
sb_EventID
sl_SegmentID
sb_AssociatedText
1502
4 (L_EVENTTYPE_SYSTEM)
421
(L_SYSTEM_SCHEDULER_ACTION_FAILED)
Segment ID
Action events contain associated text with the
description of the action.
Scheduler Action Executed
Used to indicate that a scheduler action has executed.
ID
sb_EventType
sb_EventID
sl_SegmentID
sb_AssociatedText
1503
4 (L_EVENTTYPE_SYSTEM)
422
(L_SYSTEM_SCHEDULER_ACTION_EXECUTED)
Segment ID
Action events contain associated text with the
description of the action.
Guard Tour Action Failed
Used to indicate that a guard tour action failed.
ID
sb_EventType
sb_EventID
sl_SegmentID
sb_AssociatedText
1504
4 (L_EVENTTYPE_SYSTEM)
423
(L_SYSTEM_GUARD_TOUR_ACTION_FAILED)
Segment ID
Action events contain associated text with the
Copyright 2012 Lenel Systems International, Inc.
51
description of the action.
Guard Tour Action Executed
Used to indicate that a guard tour action has executed.
ID
sb_EventType
sb_EventID
1505
4 (L_EVENTTYPE_SYSTEM)
424
(L_SYSTEM_GUARD_TOUR_ACTION_EXECUTED)
Segment ID
Action events contain associated text with the description
of the action.
sl_SegmentID
sb_AssociatedText
Global Linkage Action Failed
Used to indicate that a global linkage action failed.
ID
sb_EventType
sb_EventID
1506
4 (L_EVENTTYPE_SYSTEM)
425
(L_SYSTEM_GLOBAL_LINKAGE_ACTION_FAILED)
Segment ID
Action events contain associated text with the description
of the action.
sl_SegmentID
sb_AssociatedText
Global Linkage Action Executed
Used to indicate that a Global Linkage action has executed.
ID
sb_EventType
sb_EventID
sl_SegmentID
sb_AssociatedText
1507
4 (L_EVENTTYPE_SYSTEM)
426
(L_SYSTEM_GLOBAL_LINKAGE_ACTION_EXECUTED)
Segment ID
Action events contain associated text with the description of
the action.
Invalid Device Serial Number
Event used to indicate that the device has an invalid serial number.
ID
1510
Copyright 2012 Lenel Systems International, Inc.
52
sb_EventType
sb_EventID
4 (L_EVENTTYPE_SYSTEM)
427
(L_SYSTEM_INVALID_DEVICE_SERIAL_NUMBER)
Panel ID.
Device ID.
ss_AccessPanelID
sb_DeviceID
Invalid Device Type Mismatch
Event used to indicate that the device type is incorrect.
ID
sb_EventType
sb_EventID
1511
4 (L_EVENTTYPE_SYSTEM)
428
(L_SYSTEM_DEVICE_TYPE_MISMATCH)
Panel ID.
Device ID.
ss_AccessPanelID
sb_DeviceID
Panel ID Mismatch
Event used to indicate that panel ID doesn’t match what is expected.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1512
4 (L_EVENTTYPE_SYSTEM)
429 (L_SYSTEM_PANEL_ID_MISMATCH)
Panel ID.
Panel Free Memory Low
Event used to indicate that the free memory in the panel/controller is low.
ID
sb_EventType
sb_EventID
1513
4 (L_EVENTTYPE_SYSTEM)
430
(L_SYSTEM_PANEL_FREE_MEMORY_LOW)
Panel ID.
ss_AccessPanelID
First Card Unlock Mode Enabled
Generated when first card unlock mode is enabled for a door.
ID
sb_EventType
sb_EventID
1542
4 (L_EVENTTYPE_SYSTEM)
440
Copyright 2012 Lenel Systems International, Inc.
53
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
(L_SYSTEM_FIRST_CARD_UNLOCK_MODE_ENABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
First Card Unlock Mode Disabled
Generated when first card unlock mode is disabled for a door.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1543
4 (L_EVENTTYPE_SYSTEM)
441
(L_SYSTEM_FIRST_CARD_UNLOCK_MODE_DISABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Extended Held Open Mode Enabled
Generated when extended held open mode is enabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1544
4 (L_EVENTTYPE_SYSTEM)
442
(L_SYSTEM_EXTENDED_HELD_OPEN_MODE_ENABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Extended Held Open Mode Disabled
Generated when extended held open mode is disabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1545
4 (L_EVENTTYPE_SYSTEM)
443
(L_SYSTEM_EXTENDED_HELD_OPEN_MODE_DISABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
54
Cipher Mode Enabled
Generated when cipher mode is enabled for a reader. When this occurs card data can be entered
via the keypad.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1546
4 (L_EVENTTYPE_SYSTEM)
444 (L_SYSTEM_CIPHER_MODE_ENABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Cipher Mode Disabled
Generated when Cipher mode is disabled for a reader.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1547
4 (L_EVENTTYPE_SYSTEM)
445
(L_SYSTEM_CIPHER_MODE_DISABLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Biometric Verify Mode Enabled
Generated when biometric verify mode is enabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1548
4 (L_EVENTTYPE_SYSTEM)
446
(L_SYSTEM_BIO_VERIFY_MODE_ENABLED)
Panel ID.
Device ID (ReaderID)
EVENT_DATA_TYPE_STATUS
Biometric Verify Mode Disabled
Generated when biometric verify mode is disabled.
ID
sb_EventType
sb_EventID
1549
4 (L_EVENTTYPE_SYSTEM)
447
Copyright 2012 Lenel Systems International, Inc.
55
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
(L_SYSTEM_BIO_VERIFY_MODE_DISABLED)
Panel ID.
Device ID (ReaderID)
EVENT_DATA_TYPE_STATUS
Extended Held Command Denied
Generated when an extended held command is denied.
ID
sb_EventType
sb_EventID
1552
4 (L_EVENTTYPE_SYSTEM)
448
(L_SYSTEM_EXT_HELD_CMND_DENIED)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Device ID (Reader ID)
sb_EventDataType
EVENT_DATA_TYPE_USERCMD
su_EventData.us_UserCmdData.sl_CardNumber Card Number of user executing command
sb_EventParam
Whether or not a parameter value is
associated with this event (0- No, 1 – Yes).
sl_EventParamValue
Command Denied ID to indicate the type of
denial for the user command.
Extended Held Command Set From Reader
Generated when an extended held command is entered at the reader.
ID
sb_EventType
sb_EventID
1553
4 (L_EVENTTYPE_SYSTEM)
449
(L_SYSTEM_EXT_HELD_CMND_ACCEPTED)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Device ID (Reader ID)
sb_EventDataType
EVENT_DATA_TYPE_USERCMD
su_EventData.us_UserCmdData.sl_CardNumber Card Number of user executing command
Max Bio Templates Reached
Indicates that the maximum biometric templates of a given type has been reached in the
controller during a database download.
ID
sb_EventType
sb_EventID
1784
4 (L_EVENTTYPE_SYSTEM)
535
Copyright 2012 Lenel Systems International, Inc.
56
(L_SYSTEM_MAX_BIO_TEMPLATES_REACHED)
Acknowledgment Action Executed
Indicates that an action has been executed from an alarm acknowledgment.
ID
sb_EventType
sb_EventID
1785
4 (L_EVENTTYPE_SYSTEM)
536
(L_SYSTEM_ACKNOWLEDGMENT_ACTION_EXECUTED)
Acknowledgment Action Failed
Indicates that an action that was executed from an alarm acknowledgment failed.
ID
sb_EventType
sb_EventID
1786
4 (L_EVENTTYPE_SYSTEM)
537
(L_SYSTEM_ACKNOWLEDGMENT_AC
TION_FAILED)
Alarm Monitoring Action Group Executed
Indicates that an action group was executed from Alarm Monitoring.
ID
sb_EventType
sb_EventID
1787
4 (L_EVENTTYPE_SYSTEM)
538
(L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_EXECUTED)
ss_AccessPanelID Panel ID
Alarm Monitoring Action Group Failed
Indicates that an action group failed to be executed from Alarm Monitoring.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1788
4 (L_EVENTTYPE_SYSTEM)
539
(L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_FAILED)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
57
Communication Initialization Failed
Used to indicate that initialization to the device failed. This is mainly used by the
Communication Server when it fails to startup a controller because of a communication issue.
ID
sb_EventType
sb_EventID
1790
4 (L_EVENTTYPE_SYSTEM)
540
(L_SYSTEM_COMMUNICATION_INIT_FAILED)
Panel ID
ss_AccessPanelID
User Failed To Reach Destination
Used by the Destination Assurance feature to indicate that a user (cardholder) failed to reach the
destination in the allotted amount of time.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1791
4 (L_EVENTTYPE_SYSTEM)
541
(L_SYSTEM_USER_FAILED_TO_REACH_DESTINATION)
Panel ID
Unexpected Access Attempt
Used by the Destination Assurance feature to indicate that a cardholder attempted access at an
unexpected destination reader.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1792
4 (L_EVENTTYPE_SYSTEM)
542
(L_SYSTEM_UNEXPECTED_ACCESS_ATTEMPT)
Panel ID
Unexpected Access
Used by the Destination Assurance feature to indicate that a cardholder gained access at an
unexpected reader.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1793
4 (L_EVENTTYPE_SYSTEM)
543 (L_SYSTEM_UNEXPECTED_ACCESS)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
58
Reader Low Battery
Generated when a reader has a low battery.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1814
4 (L_EVENTTYPE_SYSTEM)
544 (L_SYSTEM_READER_LOW_BATTERY)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Reader Low Battery Restored
Generated when a reader low battery condition has been restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1815
4 (L_EVENTTYPE_SYSTEM)
545
(L_SYSTEM_READER_LOW_BATTERY_RESTORED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Reader Motor Stalled
Generated when the motor stalls on a reader.
ID
sb_EventType
sb_EventID
1816
4 (L_EVENTTYPE_SYSTEM)
546
(L_SYSTEM_READER_MOTOR_STALLED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
Reader Motor Stalled Restored
Generated when a motor stalled condition has been restored.
ID
sb_EventType
sb_EventID
1817
4 (L_EVENTTYPE_SYSTEM)
547
(L_SYSTEM_READER_MOTOR_STALLED_RESTORED)
Copyright 2012 Lenel Systems International, Inc.
59
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_STATUS
Controller Encryption Error
Generated in several instances, including when:
· A controller is configured for a plain connection when it requires encryption.
· An encrypted controller is online, but its configuration is changed to a plain connection.
· A controller is configured for a plain connection, but then a physical controller swap is
made where the new controller requires encryption.
· A controller that supports encryption is currently online with a plan connection, and then
the DIR switch 8 is turned on.
ID
sb_EventType
sb_EventID
1873
4 (L_EVENTTYPE_SYSTEM)
548
(L_SYSTEM_CONTROLLER_ENCRYPTION_ERROR)
Panel ID.
EVENT_DATA_TYPE_STATUS
ss_AccessPanelID
sb_EventDataType
Controller Connection Mismatch
Generated when the OnGuard attempts to make a connection to a controller by upgrading or
degrading the connection while the controller is online.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1874
4 (L_EVENTTYPE_SYSTEM)
549
(L_SYSTEM_CONTROLLER_CONNECTION_MISMATCH)
Panel ID.
EVENT_DATA_TYPE_STATUS
History Report Start
Generated when a controller or device starts to report the contents of its internal event buffer.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1881
4 (L_EVENTTYPE_SYSTEM)
550 (L_SYSTEM_HISTORY_START)
Panel ID.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
60
History Report End
Generated when a controller or device ends reporting the contents of its internal event buffer.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1882
4 (L_EVENTTYPE_SYSTEM)
551 (L_SYSTEM_HISTORY_END)
Panel ID.
EVENT_DATA_TYPE_STATUS
Point Enabled
Generated when an input point is the system has been enabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1883
4 (L_EVENTTYPE_SYSTEM)
552 (L_SYSTEM_POINT_ENABLE)
Panel ID.
Device ID (Input point)
EVENT_DATA_TYPE_STATUS
Point Disabled
Generated when an input point is the system has been disabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1884
4 (L_EVENTTYPE_SYSTEM)
553 (L_SYSTEM_POINT_DISABLE)
Panel ID.
Device ID (Input point)
EVENT_DATA_TYPE_STATUS
Door Open
An event indicating that the door has opened.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1887
4 (L_EVENTTYPE_SYSTEM)
554 (L_SYSTEM_DOOR_OPEN)
Panel ID.
Device ID
Copyright 2012 Lenel Systems International, Inc.
61
Door Close
Generated when a door closes.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1888
4 (L_EVENTTYPE_SYSTEM)
555 (L_SYSTEM_DOOR_CLOSE)
Panel ID.
Device ID
Communications With Host Lost
An event was generated by the hardware when communications with the host was lost.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1889
4 (L_EVENTTYPE_SYSTEM)
556 (L_SYSTEM_COMM_LOST_WITH_HOST)
Panel ID.
EVENT_DATA_TYPE_STATUS
Communications With Host Restored
An event was generated by the hardware when communications with the host was restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1890
4 (L_EVENTTYPE_SYSTEM)
557
(L_SYSTEM_COMM_RESTORED_WITH_HOST)
Panel ID.
EVENT_DATA_TYPE_STATUS
Panel Event Capacity Exceeded - Events Overwritten
Generated when the event log in the panel fills up and starts overwriting old events.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1905
4 (L_EVENTTYPE_SYSTEM)
558
(L_SYSTEM_EVENT_LOG_OVERWRITTEN)
Panel ID.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
62
Communication Access Denied
???.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1916
4 (L_EVENTTYPE_SYSTEM)
559 (L_SYSTEM_COMM_ACCESS_DENIED)
Panel ID.
???
Communication Access Restored
???.
ID
sb_EventType
sb_EventID
1917
4 (L_EVENTTYPE_SYSTEM)
560
(L_SYSTEM_COMM_ACCESS_RESTORED)
Panel ID.
???
ss_AccessPanelID
sb_DeviceID
Intrusion Command Denied
An attempt to execute an intrusion command was denied, either the command is not allowed at
the reader, the user is not authorized for this command or invalid command arguments were
supplied.
ID
sb_EventType
sb_EventID
1920
4 (L_EVENTTYPE_SYSTEM)
561
(L_SYSTEM_ARMDISARM_CMND_DENIED
ss_AccessPanelID
Panel ID.
sb_DeviceID
Device ID (Reader ID)
sb_EventDataType
EVENT_DATA_TYPE_USERCMD
su_EventData.us_UserCmdData.sl_AlarmMaskGroup Alarm Mask Group ID for command
sb_EventParam
Yes if enabled, otherwise 0
sl_EventParamValue
ID used to identify reason for denial.
Intrusion Command Accepted
An intrusion command was successfully executed.
ID
1921
Copyright 2012 Lenel Systems International, Inc.
63
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_UserCmdData.
sl_AlarmMaskGroup
4 (L_EVENTTYPE_SYSTEM)
562
(L_SYSTEM_ARMDISARM_CMND_ACCEPTED)
Panel ID.
Device ID (Reader ID)
EVENT_DATA_TYPE_USERCMD
Alarm Mask Group ID for command
Alarm Mask Group Armed
This event is generated when the alarm mask group is armed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
su_EventData.us_AlarmMaskGroupData.
sl_AlarmMaskGroup
1922
4 (L_EVENTTYPE_SYSTEM)
563
(L_SYSTEM_ALARMMASKGROUP_ARMED)
Panel ID.
EVENT_DATA_TYPE_ALARMMASKGROUP
Alarm Mask Group ID that was armed
Alarm Mask Group Disarmed
This event is generated when the alarm mask group is disarmed.
ID
sb_EventType
sb_EventID
1923
4 (L_EVENTTYPE_SYSTEM)
564
(L_SYSTEM_ALARMMASKGROUP_DISARMED)
ss_AccessPanelID
Panel ID.
sb_EventDataType
EVENT_DATA_TYPE_ALARMMASKGROUP
su_EventData.us_AlarmMaskGroupData. Alarm Mask Group ID that was disarmed
sl_AlarmMaskGroup
Alarm Mask Group Force Armed
This event is generated when the alarm mask group is force armed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1924
4 (L_EVENTTYPE_SYSTEM)
565
(L_SYSTEM_ALARMMASKGROUP_FORCE_ARMED)
Panel ID.
Copyright 2012 Lenel Systems International, Inc.
64
sb_EventDataType
EVENT_DATA_TYPE_ALARMMASKGROUP
su_EventData.us_AlarmMaskGroupData. Alarm Mask Group ID that was force armed
sl_AlarmMaskGroup
Alarm Mask Group Mask Count Incremented
This event is generated when a disarm command is issued and the alarm mask group is already
disarmed, causing the alarm mask count to get incremented. The alarm mask group will still
remain disarmed.
ID
sb_EventType
sb_EventID
1925
4 (L_EVENTTYPE_SYSTEM)
566
(L_SYSTEM_ALARMMASKGROUP_COUNT_INCREME
ss_AccessPanelID
Panel ID.
sb_EventDataType
EVENT_DATA_TYPE_ALARMMASKGROUP
su_EventData.us_AlarmMaskGroupData. Alarm Mask Group ID that was incremented
sl_AlarmMaskGroup
Alarm Mask Group Mask Count Decremented
This event is generated when an arm or force arm command is issued and the alarm mask group
has a mask count greater than 1, causing the mask count to be decremented. The alarm mask
group will still remain disarmed.
ID
sb_EventType
sb_EventID
1926
4 (L_EVENTTYPE_SYSTEM)
567
(L_SYSTEM_ALARMMASKGROUP_COUNT_DECREM
ss_AccessPanelID
Panel ID.
sb_EventDataType
EVENT_DATA_TYPE_ALARMMASKGROUP
su_EventData.us_AlarmMaskGroupData. Alarm Mask Group ID that was decremented
sl_AlarmMaskGroup
Alarm Mask Group Arming Failure, Active Points
The following command is used to indicate an arming failure due to active points.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_EventDataType
1927
4 (L_EVENTTYPE_SYSTEM)
568
(L_SYSTEM_ALARMMASKGROUP_ARM_FAILURE_P
Panel ID.
EVENT_DATA_TYPE_ALARMMASKGROUP
Copyright 2012 Lenel Systems International, Inc.
65
su_EventData.us_AlarmMaskGroupData. Alarm Mask Group ID that contained active points
sl_AlarmMaskGroup
Elevator Terminal Mode Default Floor or User Entry of
Destination Floor
Generated when the elevator terminal mode has changed to “Default Floor or User Entry of
Destination Floor.
ID
sb_EventType
sb_EventID
1936
4 (L_EVENTTYPE_SYSTEM)
572
(L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR)
ss_AccessPanelID Panel ID.
sb_DeviceID
Device ID (Elevator Terminal ID)
Unknown Elevator Terminal
Generated when an elevator terminal is detected that has not been configured in the system.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1937
4 (L_EVENTTYPE_SYSTEM)
573
(L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL)
Panel ID.
Device ID (Elevator Terminal ID)
Request to Exit - Door Used
Generated when the request to exit is granted and the door is used.
Note: If the Assumed Door Used checkbox is selected on the Readers form, then the door is
assumed to be used. This might interfere with this event
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1940
4 (L_EVENTTYPE_SYSTEM)
574
(L_SYSTEM_READER_REQUEST_TO_EXIT_USED)
Panel ID.
Device ID (Reader ID)
Request to Exit - Door Not Used
Generated when the request to exit is granted and the door is not used.
Copyright 2012 Lenel Systems International, Inc.
66
Note: If the Assumed Door Used checkbox is selected on the Readers form, then the door is
assumed to be used. This might interfere with this event
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1941
4 (L_EVENTTYPE_SYSTEM)
575
(L_SYSTEM_READER_REQUEST_TO_EXIT_NOT_USED)
Panel ID.
Device ID (Reader ID)
Invalid OEM Code
Indicates that the hardware did not contain the expected OEM (Original Equipment
Manufacturer) code.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1942
4 (L_EVENTTYPE_SYSTEM)
576 (L_SYSTEM_INVALID_OEM_CODE)
Panel ID.
Elevator Terminal Mode Default Floor
Generated when the elevator terminal mode has changed to “Default Floor Only..
ID
sb_EventType
sb_EventID
1943
4 (L_EVENTTYPE_SYSTEM)
569
(L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR)
Panel ID.
Device ID (Elevator Terminal ID)
ss_AccessPanelID
sb_DeviceID
Elevator Terminal Mode Access to Authorized Floors
Generated when the elevator terminal mode has changed to “Access to Authorized Floors.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1944
4 (L_EVENTTYPE_SYSTEM)
570
(L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS)
Panel ID.
Device ID (Elevator Terminal ID)
Copyright 2012 Lenel Systems International, Inc.
67
Elevator Terminal Mode User Entry of Destination Floor
Generated when the elevator terminal mode has changed to “User Entry of Destination Floor.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1945
4 (L_EVENTTYPE_SYSTEM)
571
(L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR)
Panel ID.
Device ID (Elevator Terminal ID)
License Will Soon Expire
Generated when the system license is reaching its expiration date.
ID
sb_EventType
sb_EventID
1964
4 (L_EVENTTYPE_SYSTEM)
579 (L_SYSTEM_LICENSE_EXPIRES)
Reader Offline
Generated when a reader has been detected as being offline.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1968
4 (L_EVENTTYPE_SYSTEM)
580 (L_SYSTEM_READER_OFFLINE)
Panel ID.
Device ID (Reader ID)
Reader Offline Restored
Generated when a reader has been detected as no longer being offline.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1969
4 (L_EVENTTYPE_SYSTEM)
581
(L_SYSTEM_READER_OFFLINE_RESTORED)
Panel ID.
Device ID (Reader ID)
Copyright 2012 Lenel Systems International, Inc.
68
Instant Command 16
Generated when the reader instant keypad command “(#)” was executed
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1970
4 (L_EVENTTYPE_SYSTEM)
582 (L_SYSTEM_SET_INSTANT_CMD16)
Panel ID.
Device ID (Reader ID)
Instant Command 17
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1971
4 (L_EVENTTYPE_SYSTEM)
583 (L_SYSTEM_SET_INSTANT_CMD17)
Panel ID.
Device ID (Reader ID)
Instant Command 18
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1972
4 (L_EVENTTYPE_SYSTEM)
584 (L_SYSTEM_SET_INSTANT_CMD18)
Panel ID.
Device ID (Reader ID)
Instant Command 19
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1973
4 (L_EVENTTYPE_SYSTEM)
585 (L_SYSTEM_SET_INSTANT_CMD19)
Panel ID.
Device ID (Reader ID)
Copyright 2012 Lenel Systems International, Inc.
69
Instant Command 20
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1974
4 (L_EVENTTYPE_SYSTEM)
586 (L_SYSTEM_SET_INSTANT_CMD20)
Panel ID.
Device ID (Reader ID)
Instant Command 21
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1975
4 (L_EVENTTYPE_SYSTEM)
587 (L_SYSTEM_SET_INSTANT_CMD21)
Panel ID.
Device ID (Reader ID)
Instant Command 22
Generated when the reader instant keypad command “(#)” was executed. – Need to add to
Documentation.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1976
4 (L_EVENTTYPE_SYSTEM)
588 (L_SYSTEM_SET_INSTANT_CMD22)
Panel ID.
Device ID (Reader ID)
Unknown User Command
Generated when an unknown user command is entered through a reader. For example, if a
cardholder enters the command *1234# (where that command means nothing) an unknown user
command alarm is sent to Alarm Monitoring. The numbers entered as the command are used as
the event text for the alarm.
ID
sb_EventType
sb_EventID
1978
4 (L_EVENTTYPE_SYSTEM)
590
(L_SYSTEM_UNKNOWN_USER_COMMAND)
Copyright 2012 Lenel Systems International, Inc.
70
ss_AccessPanelID
sb_DeviceID
Panel ID.
Device ID (Reader ID)
Copyright 2012 Lenel Systems International, Inc.
71
Elevator Events
Unknown Elevator Terminal
System Generated when an elevator terminal is detected that has not been configured in the
system.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
Sb_MessageTyp
1937
(4) (L_EVENTTYPE_SYSTEM)
(570) (L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL)
Panel ID
Terminal ID
EVENT_DATA_TYPE_STATUS
LNLMSG_TYPE_EVENT
Elevator Terminal Mode Default Floor
System Generated when the elevator terminal mode has changed to "Default Floor Only."
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
sb_MessageTyp
1943
(4) (L_EVENTTYPE_SYSTEM)
(569) (L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR)
Panel ID
Terminal ID
EVENT_DATA_TYPE_STATUS
LNLMSG_TYPE_EVENT
Elevator Terminal Mode Access to Authorized Floors
System Generated when the elevator terminal mode has changed to "Access to Authorized
Floors."
ID
sb_EventType
sb_EventID
1944
(4) (L_EVENTTYPE_SYSTEM)
(572)
(L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR)
ss_AccessPanelID Panel ID
sb_DeviceID
Terminal ID
sb_EventDataType EVENT_DATA_TYPE_STATUS
Sb_MessageTyp
LNLMSG_TYPE_EVENT
Copyright 2012 Lenel Systems International, Inc.
72
Elevator Terminal Mode Default Floor or User Entry of
Destination Floor
System Generated when the elevator terminal mode has changed to "Default Floor or User Entry
of Destination Floor."
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
sb_MessageTyp
1936
(4) (L_EVENTTYPE_SYSTEM)
(573)
(L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS)
Panel ID
Terminal ID
EVENT_DATA_TYPE_STATUS
LNLMSG_TYPE_EVENT
Elevator Terminal Mode User Entry of Destination Floor
System Generated when the elevator terminal mode has changed to "User Entry of Destination
Floor."
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
sb_MessageTyp
1945
(4) (L_EVENTTYPE_SYSTEM)
(571) (L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR)
Panel ID
terminal ID
EVENT_DATA_TYPE_STATUS
LNLMSG_TYPE_EVENT
Access Granted to Destination Floor
Generated when a card was presented to a reader associated with an elevator terminal and the
elevator cab assignment was performed. Used when elevator dispatching devices are present.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
sb_MessageTyp
5155
(0) (L_EVENTTYPE_GRANTED)
(22) (L_GRANTED_DESTINATION_FLOOR)
Panel ID
Terminal ID
EVENT_DATA_TYPE_CA
LNLMSG_TYPE_EVENT
Copyright 2012 Lenel Systems International, Inc.
73
Access Denied to Destination Floor
Generated when a card was presented to a reader associated with an elevator terminal but the
elevator assignment was not performed; used when elevator dispatching devices are present.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
sb_MessageTyp
5156
(1) (L_EVENTTYPE_DENIED)
(66) (L_DENIED_DESTINATION_FLOOR)
Panel ID
Terminal ID
EVENT_DATA_TYPE_CA
LNLMSG_TYPE_EVENT
Copyright 2012 Lenel Systems International, Inc.
74
Copyright 2012 Lenel Systems International, Inc.
75
Asset Events
Asset Denied - Invalid Asset
Event indicating that the asset was denied because of an invalid asset.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
754
5 (L_EVENTTYPE_ASSET)
0 (L_ASSET_INVALID_ASSET)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event type of cardholder transaction
Event ID of cardholder transaction
Asset Denied - Invalid Cardholder
Event indicating that the asset was denied because of an invalid cardholder.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
755
5 (L_EVENTTYPE_ASSET)
1 (L_ASSET_INVALID_CARDHOLDER)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event type of cardholder transaction
Event ID of cardholder transaction
Asset Denied - Invalid Access
Event indicating that the asset was denied because of an invalid access.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
756
5 (L_EVENTTYPE_ASSET)
2 (L_ASSET_INVALID_ACCESS)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Copyright 2012 Lenel Systems International, Inc.
76
su_EventData.us_AssetData.sl_CardNumber Card number
su_EventData.us_AssetData.sl_EventType
Event type of the cardholder transaction
su_EventData.us_AssetData.sl_EventID
Event ID of the cardholder transaction
Asset Denied - No Asset Privileges
Event indicating that the asset was denied because of no asset privileges.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
757
5 (L_EVENTTYPE_ASSET)
3 (L_ASSET_INVALID_PRIVILEGES)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event type of the cardholder transaction
Event ID of the cardholder transaction
Asset Granted - Asset Owner
Event indicating that the asset was granted based on asset owner.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
758
5 (L_EVENTTYPE_ASSET)
4 (L_ASSET_GRANTED_OWNER)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event type of the cardholder transaction
Event ID of the cardholder transaction
Asset Granted - Asset Privileges Only
Event indicating that the asset was granted based on asset privileges only.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
759
5 (L_EVENTTYPE_ASSET)
5
(L_ASSET_GRANTED_PRIVILEGES_ONLY)
Panel ID.
Copyright 2012 Lenel Systems International, Inc.
77
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event type of the cardholder transaction
Event ID of the cardholder transaction
Asset Denied – Asset Disable Command Sent
Event indicating that the asset disable command was sent because the asset was denied.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_AssetData.sl_AssetID
su_EventData.us_AssetData.sl_CardNumber
su_EventData.us_AssetData.sl_EventType
su_EventData.us_AssetData.sl_EventID
794
5 (L_EVENTTYPE_ASSET)
6 (L_ASSET_DISABLE_CMD_SENT)
Panel ID.
Device ID.
EVENT_DATA_ASSET
Asset ID
Card number
Event Type
Event ID
Copyright 2012 Lenel Systems International, Inc.
78
Fire Events
Fire Alarm In
This event is used to indicate a fire alarm is active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
220
7 (L_EVENTTYPE_FIRE)
200 (L_FIRE_FIRE_ALARM_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Fire Alarm Out
This event is used to indicate a fire alarm is no longer active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
221
7 (L_EVENTTYPE_FIRE)
201 (L_FIRE_FIRE_ALARM_OUT)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Fire Alarm Acknowledge
Indicates that a fire alarm has been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
222
7 (L_EVENTTYPE_FIRE)
202 (L_FIRE_FIRE_ALARM_ACK)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Fire Alarm Block Acknowledge
Event used to indicate a group of fire alarms have been acknowledged.
ID
sb_EventType
sb_EventID
223
7 (L_EVENTTYPE_FIRE)
203 (L_FIRE_FIRE_ALARM_BLOCK_ACK)
Copyright 2012 Lenel Systems International, Inc.
79
ss_AccessPanelID
Panel ID
Supervisory In
Event used to indicate a supervisory condition.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
224
7 (L_EVENTTYPE_FIRE)
204 (L_FIRE_SUPERVISORY_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Supervisory Out
Event used to indicate that a supervisory condition has been returned to the normal state.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
225
7 (L_EVENTTYPE_FIRE)
205 (L_FIRE_SUPERVISORY_OUT)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Supervisory Acknowledge
Indicates that a supervisory condition has been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
226
7 (L_EVENTTYPE_FIRE)
206 (L_FIRE_SUPERVISORY_ACK)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Supervisory Block Acknowledge
Event used to acknowledge a group of supervisory condition alarms.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
227
7 (L_EVENTTYPE_FIRE)
207 (L_FIRE_SUPERVISORY_BLOCK_ACK)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
80
Security Alarm In
Event used to indicate a new security alarm.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
228
7 (L_EVENTTYPE_FIRE)
208 (L_FIRE_SECURITY_ALARM_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Security Alarm Out
Indicates that a security alarm is no longer active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
229
7 (L_EVENTTYPE_FIRE)
209 (L_FIRE_SECURITY_ALARM_OUT)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Security Alarm Acknowledge
Event used to indicate that a security alarm has been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
230
7 (L_EVENTTYPE_FIRE)
210 (L_FIRE_SECURITY_ALARM_BLOCK_ACK)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Security Alarm Block Acknowledge
Event used to indicate that a group of security alarms have been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
231
7 (L_EVENTTYPE_FIRE)
211 (L_FIRE_SECURITY_ALARM_BLOCK_ACK)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
81
Audibles Silenced
Indicates that the audibles have been silenced.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
232
7 (L_EVENTTYPE_FIRE)
212 (L_FIRE_AUDIBLES_SILENCED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Audibles Unsilenced
Indicates that the audibles have been unsilenced.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
233
7 (L_EVENTTYPE_FIRE)
213 (L_FIRE_AUDIBLES_UNSILENCED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
System Reset
Indicates that a system reset has been issued on the Fire Panel.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
234
7 (L_EVENTTYPE_FIRE)
214 (L_FIRE_SYSTEM_RESET)
Panel ID
Status In
Indicates that a status reporting device is active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
235
7 (L_EVENTTYPE_FIRE)
215 (L_FIRE_STATUS_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Copyright 2012 Lenel Systems International, Inc.
82
Status Out
Indicates that a status reporting device has returned to the inactive state.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
236
7 (L_EVENTTYPE_FIRE)
216 (L_FIRE_STATUS_OUT)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Trouble Block Acknowledge
Event used to indicate that a group of trouble alarms have been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
237
7 (L_EVENTTYPE_FIRE)
217 (L_FIRE_TROUBLE_BLOCK_ACK)
Panel ID
Trouble In
Event used to indicate a trouble alarm. This event can have a trouble code associated with it that
will be passed as a parameter to the event.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
sl_EventParamValue
sb_EventDataType
765
7 (L_EVENTTYPE_FIRE)
218 (L_FIRE_TROUBLE_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Trouble ID to indicate the type of trouble.
EVENT_DATA_TYPE_STATUS
Trouble Out
This event is used to indicate a trouble alarm has been restored. This event can have a trouble
code associated with it that will be passed as a parameter to the event.
ID
sb_EventType
766
7 (L_EVENTTYPE_FIRE)
Copyright 2012 Lenel Systems International, Inc.
83
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
sl_EventParamValue
sb_EventDataType
219 (L_FIRE_TROUBLE_OUT)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Trouble ID to indicate the type of trouble.
EVENT_DATA_TYPE_STATUS
Trouble Acknowledge
This event is used to indicate a trouble alarm has been acknowledged. This event can have a
trouble code associated with it that will be passed as a parameter to the event.
ID
767
sb_EventType
7 (L_EVENTTYPE_FIRE)
sb_EventID
220 (L_FIRE_TROUBLE_ACK)
ss_AccessPanelID
Panel ID
sb_DeviceID
Sub device ID (0 if event is for panel).
sb_InputDevID
Input device ID (0 if event is for sub device or panel).
sb_EventParam
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
sl_EventParamValue Trouble ID to indicate the type of trouble.
sb_EventDataType
EVENT_DATA_TYPE_STATUS
All Systems Normal
Generated when the fire panel is booted up. This alarm may also be sent when all existing alarm
conditions are resolved.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1526
7 (L_EVENTTYPE_FIRE)
256 (L_FIRE_ALL_SYSTEMS_NORMAL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Fire Alarm Acknowledged Clear
Generated when a fire alarm has been acknowledged and cleared.
ID
sb_EventType
1527
7 (L_EVENTTYPE_FIRE)
Copyright 2012 Lenel Systems International, Inc.
84
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
257 (L_FIRE_ALARM_ACKNOWLEDGED_CLEAR)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Trouble Acknowledged Clear
A trouble condition that has been cleared has been acknowledged by the user.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1528
7 (L_EVENTTYPE_FIRE)
258 (L_FIRE_TROUBLE_ACKNOWLEDGED_CLEAR)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Walk Test Unprogrammed
Generated when the reported device was part of a walk test and has been removed from the
system (it is not longer configured in the system).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1529
7 (L_EVENTTYPE_FIRE)
259 (L_FIRE_WALK_TEST_UNPROGRAMMED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Walk Test Uninstalled
Generated when the reported device was part of a walk test and has been physically disconnected
from the system.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1530
7 (L_EVENTTYPE_FIRE)
260 (L_FIRE_WALK_TEST_UNINSTALLED)
Panel ID
Sub device ID (0 if event is for panel).
Copyright 2012 Lenel Systems International, Inc.
85
sb_InputDevID
sb_EventParam
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Walk Test ##
Generated when walk test ## is initiated. A walk test is used to test devices in the system and
report devices addressed incorrectly. The device and the first zone programmed for this device
are reported with each message.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1531
7 (L_EVENTTYPE_FIRE)
261 (L_FIRE_WALK_TEST_NUM)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Walk Test Untest
Generated when the reported device is no longer being tested (part of a walk test).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1532
7 (L_EVENTTYPE_FIRE)
262 (L_FIRE_WALK_TEST_UNTEST)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Module Active
Generated when a monitor or control module connected to the system becomes active. The
device label assigned to this device and the zone label assigned to the first zone programmed for
this device will be included with the event.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
1533
7 (L_EVENTTYPE_FIRE)
263 (L_FIRE_MODULE_ACTIVE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Copyright 2012 Lenel Systems International, Inc.
86
sb_EventParam
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Module Clear
Generated when a monitor or control module connected to the system is no longer active. The
device label assigned to this device and the zone label assigned to the first zone programmed for
this device will be included with the event.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1534
7 (L_EVENTTYPE_FIRE)
264 (L_FIRE_MODULE_CLEAR)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Signal Silence
Generated when the alarm signal on the hardware has been silenced.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1535
7 (L_EVENTTYPE_FIRE)
265 (L_FIRE_SIGNAL_SILENCE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Detector Test
Generated when the fire detection test is initiated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1536
7 (L_EVENTTYPE_FIRE)
266 (L_FIRE_DETECTOR_TEST)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Copyright 2012 Lenel Systems International, Inc.
87
Detector Test OK
Generated when the fire detection test is successfully completed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1537
7 (L_EVENTTYPE_FIRE)
267 (L_FIRE_DETECTOR_TEST_OK)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Detector Test Fail
Generated when the fire detection test fails.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1538
7 (L_EVENTTYPE_FIRE)
268 (L_FIRE_DETECTOR_TEST_FAIL)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Lamp Test Activated
Generated when the lamp test is activated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1539
7 (L_EVENTTYPE_FIRE)
269 (L_FIRE_LAMP_TEST_ACTIVATED)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Lamp Test Complete
Generated when the lamp test successfully completes.
Copyright 2012 Lenel Systems International, Inc.
88
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1540
7 (L_EVENTTYPE_FIRE)
270 (L_FIRE_LAMP_TEST_COMPLETE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Block Acknowledge
Generated when a block acknowledge command is sent. This command acknowledges any
existing unacknowledged alarms in the system all at once.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1541
7 (L_EVENTTYPE_FIRE)
271 (L_FIRE_BLOCK_ACKNOWLEDGE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Pre-Alarm
An event indicating a pre-alarm condition is active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1875
7 (L_EVENTTYPE_FIRE)
280 (L_FIRE_PRE_ALARM_IN)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Pre-Alarm Clear
An event indicating a pre-alarm condition is no longer active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1876
7 (L_EVENTTYPE_FIRE)
281 (L_FIRE_PRE_ALARM_OUT)
Panel ID
Copyright 2012 Lenel Systems International, Inc.
89
sb_DeviceID
sb_InputDevID
sb_EventParam
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Non-Fire Active
An event indicating a non fire related alarm condition is active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1877
7 (L_EVENTTYPE_FIRE)
282 (L_FIRE_NON_FIRE_ACTIVE)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Non-Fire Active Cleared
An event indicating a non fire related alarm condition is no longer active.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
sb_EventParam
1880
7 (L_EVENTTYPE_FIRE)
283 (L_FIRE_NON_FIRE_ACTIVE_CLEAR)
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or panel).
Whether or not a parameter value is associated with this event (0- No, 1
– Yes).
Copyright 2012 Lenel Systems International, Inc.
90
Copyright 2012 Lenel Systems International, Inc.
91
Intercom Events
Call to a Busy Subscriber
Indicates that an intercom call has been placed to a busy subscriber. The calling intercom station
is specified in sb_DeviceID and the Busy Subscriber is specified in the intercom data
(sl_IntercomData).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.sl_IntercomData
760
10 (L_EVENTTYPE_INTERCOM)
1 (L_INTERCOM_CALL_TO_BUSY)
Intercom Exchange ID.
Intercom Station initiating call.
EVENT_DATA_TYPE_INTERCOM
Busy Subscriber call was placed to.
Call to a Private Subscriber
Indicates that an intercom call has been placed to a private subscriber. The calling intercom
station is specified in sb_DeviceID and the Private Subscriber is specified in the intercom data
(sl_IntercomData).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.sl_IntercomData
761
10 (L_EVENTTYPE_INTERCOM)
2 (L_INTERCOM_CALL_TO_PRIVATE)
Intercom Exchange ID.
Intercom Station initiating call.
EVENT_DATA_TYPE_INTERCOM
Private Subscriber call was placed to.
Call to an Open Subscriber
Indicates that an intercom call has been placed to an open subscriber. The calling intercom
station is specified in sb_DeviceID and the Open Subscriber is specified in the intercom data
(sl_IntercomData).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.sl_IntercomData
762
10 (L_EVENTTYPE_INTERCOM)
3 (L_INTERCOM_CALL_TO_OPEN)
Intercom Exchange ID.
Intercom Station initiating call.
EVENT_DATA_TYPE_INTERCOM
Open Subscriber call was placed to.
Copyright 2012 Lenel Systems International, Inc.
92
Call Disconnected
This event indicates that an intercom call has been disconnected.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.
sl_IntercomData
763
10 (L_EVENTTYPE_INTERCOM)
4 (L_INTERCOM_CALL_DISCONNECTED)
Intercom Exchange ID.
Intercom Station that has been disconnected.
EVENT_DATA_TYPE_INTERCOM
Subscriber the call was placed to.
Intercom Function
This message indicates that an intercom function has been executed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventParam
sl_EventParamValue
764
10 (L_EVENTTYPE_INTERCOM)
5 (L_INTERCOM_FUNCTION)
Intercom Exchange ID.
Intercom Station function was executed on.
This is set to 1 to indicate that a parameter values is associated with
this event.
Intercom function that was executed.
Incoming Call
Indicates an incoming intercom call.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1554
10 (L_EVENTTYPE_INTERCOM)
6 (L_INTERCOM_INCOMING_CALL)
Intercom Exchange ID.
Intercom Station function.
Trouble Report
A trouble report for an intercom device. The details should be passed back in the associated text.
ID
sb_EventType
sb_EventID
1555
10 (L_EVENTTYPE_INTERCOM)
7 (L_INTERCOM_TROUBLE_REPORT)
Copyright 2012 Lenel Systems International, Inc.
93
ss_AccessPanelID
sb_DeviceID
Intercom Exchange ID.
Intercom Station.
Test Report
A test report.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1556
10 (L_EVENTTYPE_INTERCOM)
8 (L_INTERCOM_TEST_REPORT)
Intercom Exchange ID.
Intercom Station.
Ringing
Indicates an intercom station is ringing.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1794
10 (L_EVENTTYPE_INTERCOM)
9 (L_INTERCOM_RINGING)
Intercom Exchange ID.
Intercom Station.
Call Failed
Indicates an intercom call has failed.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1795
10 (L_EVENTTYPE_INTERCOM)
10 (L_INTERCOM_CALL_FAILED)
Intercom Exchange ID.
Intercom Station function.
Hold
Indicates an intercom call has been placed on hold.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1796
10 (L_EVENTTYPE_INTERCOM)
11 (L_INTERCOM_HOLD)
Intercom Exchange ID.
Intercom Station.
Copyright 2012 Lenel Systems International, Inc.
94
Retrieved
Indicates an intercom call has been retrieved (answered).
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1797
10 (L_EVENTTYPE_INTERCOM)
12 (L_INTERCOM_RETRIEVED)
Intercom Exchange ID.
Intercom Station function.
Initiated
Indicates an intercom call has been initiated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1798
10 (L_EVENTTYPE_INTERCOM)
13 (L_INTERCOM_INITIATED)
Intercom Exchange ID.
Intercom Station function.
Call Ended
Indicates an intercom call has been ended.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1891
10 (L_EVENTTYPE_INTERCOM)
14 (L_INTERCOM_CALL_ENDED)
Intercom Exchange ID.
Intercom Station.
Call Established
Indicates an intercom call has been established.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.
sl_IntercomData
1892
10 (L_EVENTTYPE_INTERCOM)
15 (L_INTERCOM_CALL_ESTABLISHED)
Intercom Exchange ID.
Intercom Station.
EVENT_DATA_TYPE_INTERCOM
Subscriber the call was placed to.
Copyright 2012 Lenel Systems International, Inc.
95
Unanswered Call
Indicates an intercom call has not been answered.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1893
10 (L_EVENTTYPE_INTERCOM)
16 (L_INTERCOM_CALL_UNANSWERED)
Intercom Exchange ID.
Intercom Station.
Call Transferred
Indicates an intercom call has been transferred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1894
10 (L_EVENTTYPE_INTERCOM)
17 (L_INTERCOM_CALL_TRANSFERRED)
Intercom Exchange ID.
Intercom Station.
Call Conferenced
Indicates an intercom call has been conferenced.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1895
10 (L_EVENTTYPE_INTERCOM)
18 (L_INTERCOM_CALL_CONFERENCED)
Intercom Exchange ID.
Intercom Station.
Call Queued
Indicates an intercom call has been queued.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.
sl_IntercomData
1910
10 (L_EVENTTYPE_INTERCOM)
19 (L_INTERCOM_CALL_QUEUED)
Intercom Exchange ID.
Intercom Station.
EVENT_DATA_TYPE_INTERCOM
Queue receiver station.
Copyright 2012 Lenel Systems International, Inc.
96
Intercom Exchange Failure
Indicates an failure occurred for the intercom exchange.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventParam
sl_EventParamValue
1915
10 (L_EVENTTYPE_INTERCOM)
20 (L_INTERCOM_INTERCOM_EXCHANGE_ERROR)
Intercom Exchange ID.
Intercom Station.
This is set to 1 to indicate that a parameter value is associated with this
event.
Intercom error.
Call Removed from Queue
This event indicates that an intercom call has been removed from the queue.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_IntercomData.
sl_IntercomData
2290
10 (L_EVENTTYPE_INTERCOM)
21 (L_INTERCOM_REMOVED_FROM_QUEUE)
Intercom Exchange ID.
Intercom Station.
EVENT_DATA_TYPE_INTERCOM
Queue receiver station.
Copyright 2012 Lenel Systems International, Inc.
97
Copyright 2012 Lenel Systems International, Inc.
98
Video Events
Motion Detected
Event indicating motion has been detected on a given input channel (camera)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_DeviceType
777
11 (L_EVENTTYPE_VIDEO)
1 (L_VIDEO_MOTION_DETECTED)
Panel ID
Input Channel of the Camera
L_DEVICETYPE_CCTVCAMERA
Motion Detected Restored
Event indicating motion has been restored (is no longer detected) on a given input channel
(camera)
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_DeviceType
778
11 (L_EVENTTYPE_VIDEO)
2 (L_VIDEO_MOTION_DETECTED_RESTORED)
Panel ID
Input Channel of the Camera
L_DEVICETYPE_CCTVCAMERA
Video Event Threshold Reached
Event used to indicate that the user defined event threshold has been reached. That is to say that
the percent of disk space used by video events has been reached. This typically signals the
Archive Server to start archiving or purging.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
790
11 (L_EVENTTYPE_VIDEO)
3 (L_VIDEO_EVENTTHRESHOLD_REACHED)
The ID of the Video Server (Panel ID)
Video Server Disk Full
Event used to indicate the user defined event threshold has exceeded 5% or more. That is to say
that the percent of disk space used by video events has been reached and is now at least 5%
above it. This typically signals the Archive Server to start archiving or purging. If a user defined
Copyright 2012 Lenel Systems International, Inc.
99
Event Threshold has not been defined then this event should be sent when the Video Server disk
space is 95% full of video events.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
791
11 (L_EVENTTYPE_VIDEO)
4 (L_VIDEO_DISK_FULL)
The ID of the Video Server (Panel ID)
User Generated Video Event
For Internal Use Only (L_VIDEO_USER_GENERATED)
Archive Server Failure
For Internal Use Only (L_VIDEO_ARCHIVESERVER_FAILURE)
Video Server is not Recording
Generated when it has been detected that the video recorder is no longer recording.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1525
11 (L_EVENTTYPE_VIDEO)
7 (L_VIDEO_RECORDING_STOPPED)
The ID of the Video Server (Panel ID)
Capture Source Mismatch
Indicates that user-specified IP Camera type does not match actual IP Camera type.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1800
11 (L_EVENTTYPE_VIDEO)
8 (L_VIDEO_CAPTURE_SOURCE_MISMATCH)
The ID of the Video Server (Panel ID)
Camera Tamper Active
Indicates that IP Camera configuration was changed bypassing the OnGuard software. (It is
possible if the user knows password to access the IP Camera and connect to it directly using IP
Camera provided Webinterface.)
ID
sb_EventType
sb_EventID
1801
11 (L_EVENTTYPE_VIDEO)
9 (L_VIDEO_CAMERA_TAMPER)
Copyright 2012 Lenel Systems International, Inc.
100
ss_AccessPanelID
The ID of the Video Server (Panel ID)
Camera Tamper Restored
Previous camera tamper alarm has been restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1802
11 (L_EVENTTYPE_VIDEO)
10 (L_VIDEO_CAMERA_TAMPER_RETORE)
The ID of the Video Server (Panel ID)
Storage Failure
Indicates that something is wrong related to recording/retrieving video to/from hard drives.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1803
11 (L_EVENTTYPE_VIDEO)
11 (L_VIDEO_STORAGE_FAILURE)
The ID of the Video Server (Panel ID)
Blind Camera
Indicates that level of camera blindness (covered by some sort of obstacle) exceeded configured
threshold
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1878
11 (L_EVENTTYPE_VIDEO)
14 (L_VIDEO_BLIND_CAMERA_DETECTED)
The ID of the Video Server (Panel ID)
Blind Camera Restored
Blind Camera alarm is restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1879
11 (L_EVENTTYPE_VIDEO)
15 (L_VIDEO_BLIND_CAMERA_DETECTED_RESTORED)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
101
Video Failover Started
Generated when the camera is configured for failover and the secondary recorder determined that
the primary recorder is not recording video from the camera, so secondary recorder starts
recording from this camera.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1897
11 (L_EVENTTYPE_VIDEO)
16 (L_VIDEO_FAILOVER_STARTED)
The ID of the Video Server (Panel ID)
Video Failover Restored
Generated when the camera is configured for failover and secondary recorder is currently
recording video from the camera and secondary recorder determined that the primary recorder
came back online and started recording video from the camera. Secondary recorder will stop
recording video from the camera.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1898
11 (L_EVENTTYPE_VIDEO)
17 (L_VIDEO_FAILOVER_RESTORED)
The ID of the Video Server (Panel ID)
Video Failover Failed
Generated when the camera is configured for failover and failover cannot be activated on this
camera.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1899
11 (L_EVENTTYPE_VIDEO)
18 (L_VIDEO_FAILOVER_FAILED)
The ID of the Video Server (Panel ID)
Video Overflow Started
Generated when the recorder determined that it cannot handle incoming video. Usually it
happens when hard drive or CPU utilization is close to 100%, so recorder cannot keep up with
amount of video.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1900
11 (L_EVENTTYPE_VIDEO)
19 (L_VIDEO_OVERFLOW_STARTED)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
102
Video Overflow Restored
Generated when the recorder is no longer having trouble handling incoming video.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1901
11 (L_EVENTTYPE_VIDEO)
20 (L_VIDEO_OVERFLOW_RESTORED)
The ID of the Video Server (Panel ID)
Video Storage Unavailable
Generated when the recorder cannot record video to a drive.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1902
11 (L_EVENTTYPE_VIDEO)
21 (L_VIDEO_STORAGE_UNAVAILABLE)
The ID of the Video Server (Panel ID)
IVS Connection Lost
Generated when the camera is configured to analyze video on a remote IntelligentVideo Server
and connection to the IntelligentVideo Server is lost.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1903
11 (L_EVENTTYPE_VIDEO)
22 (L_VIDEO_IVS_CONNECTION_LOST)
The ID of the Video Server (Panel ID)
IVS Connection Restored
Generated when the connection to the IntelligentVideo Server was lost and has been restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1904
11 (L_EVENTTYPE_VIDEO)
23 (L_VIDEO_IVS_CONNECTION_RESTORED)
The ID of the Video Server (Panel ID)
IVS Engine Connection Lost
Generated when the IntelligentVideo Server looses connection to the LpsSearchSvc service and
video processing of all channels fails.
ID
1906
Copyright 2012 Lenel Systems International, Inc.
103
sb_EventType
sb_EventID
ss_AccessPanelID
11 (L_EVENTTYPE_VIDEO)
24 (L_VIDEO_IVS_ENGINE_CONNECTION_LOST)
The ID of the Video Server (Panel ID)
IVS Engine Connection Restored
Generated when the IntelligentVideo Server reconnects to the LpsSearchSvc service after the
connection has been lost.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1907
11 (L_EVENTTYPE_VIDEO)
25 (L_VIDEO_IVS_ENGINE_CONNECTION_RESTORED)
The ID of the Video Server (Panel ID)
IVS Channel Processing Failed
Generated by the IntelligentVideo Server when video processing is terminated due to an error or
lost connection.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1908
11 (L_EVENTTYPE_VIDEO)
26 (L_VIDEO_IVS_CHANNEL_PROCESSING_FAILED)
The ID of the Video Server (Panel ID)
IVS Channel Processing Restarted
Generated when the IntelligentVideo Server re-establishes a connection to a channel that
previously reported failure.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1909
11 (L_EVENTTYPE_VIDEO)
27 (L_VIDEO_IVS_CHANNEL_PROCESSING_RESTARTED)
The ID of the Video Server (Panel ID)
Time Out-Of-Sync
Generated when the time stamp feature is enabled and the time on the camera has a difference of
20 seconds or more from the video recorder time.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1918
11 (L_EVENTTYPE_VIDEO)
30 (L_VIDEO_TIME_OUT_OF_SYNC)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
104
Time Out-Of-Sync Restored
Generated when the time difference between the camera and video recorder returns to less than
20 seconds.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1919
11 (L_EVENTTYPE_VIDEO)
31 (L_VIDEO_TIME_OUT_OF_SYNC_RESTORED)
The ID of the Video Server (Panel ID)
In-Camera-Memory Download Failed
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1929
11 (L_EVENTTYPE_VIDEO)
35 (L_VIDEO_CAM_MEM_DOWNLOAD_FAILED)
The ID of the Video Server (Panel ID)
In-Camera-Memory Download Restored
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1930
11 (L_EVENTTYPE_VIDEO)
36 (L_VIDEO_CAM_MEM_DOWNLOAD_RESTORED)
The ID of the Video Server (Panel ID)
In-Camera-Memory Download Started
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1931
11 (L_EVENTTYPE_VIDEO)
37 (L_VIDEO_CAM_MEM_DOWNLOAD_STARTED)
The ID of the Video Server (Panel ID)
In-Camera-Memory Download Completed
???
ID
sb_EventType
1932
11 (L_EVENTTYPE_VIDEO)
Copyright 2012 Lenel Systems International, Inc.
105
sb_EventID
ss_AccessPanelID
38 (L_VIDEO_CAM_MEM_DOWNLOAD_COMPLETED)
The ID of the Video Server (Panel ID)
Firmware Download Started
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1933
11 (L_EVENTTYPE_VIDEO)
39 (L_VIDEO_FIRMWARE_DOWNLOAD_STARTED)
The ID of the Video Server (Panel ID)
Firmware Download Completed
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1934
11 (L_EVENTTYPE_VIDEO)
40 (L_VIDEO_FIRMWARE_DOWNLOAD_COMPLETED)
The ID of the Video Server (Panel ID)
Firmware Download Failed
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1935
11 (L_EVENTTYPE_VIDEO)
41 (L_VIDEO_FIRMWARE_DOWNLOAD_FAILED)
The ID of the Video Server (Panel ID)
Video Source Signal Lost
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1946
11 (L_EVENTTYPE_VIDEO)
42 (L_VIDEO_SOURCE_SIGNAL_LOST)
The ID of the Video Server (Panel ID)
Video Source Signal Restored
???
Copyright 2012 Lenel Systems International, Inc.
106
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1947
11 (L_EVENTTYPE_VIDEO)
43 (L_VIDEO_SOURCE_SIGNAL_RESTORED)
The ID of the Video Server (Panel ID)
CPU Utilization Threshold Exceeded
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1948
11 (L_EVENTTYPE_VIDEO)
44 (L_RECORDER_CPU_THRESHOLD_EXCEEDED)
The ID of the Video Server (Panel ID)
CPU Utilization Threshold Restored
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1949
11 (L_EVENTTYPE_VIDEO)
45 (L_RECORDER_CPU_THRESHOLD_RESTORED)
The ID of the Video Server (Panel ID)
Network Utilization Threshold Exceeded
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1950
11 (L_EVENTTYPE_VIDEO)
46 (L_RECORDER_NETWORK_THRESHOLD_EXCEEDED)
The ID of the Video Server (Panel ID)
Network Utilization Threshold Restored
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1951
11 (L_EVENTTYPE_VIDEO)
47 (L_RECORDER_NETWORK_THRESHOLD_RESTORED)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
107
Disk Read Utilization Threshold Exceeded
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1952
11 (L_EVENTTYPE_VIDEO)
48 (L_RECORDER_DISK_READ_THRESHOLD_EXCEEDED)
The ID of the Video Server (Panel ID)
Disk Read Utilization Threshold Restored
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1953
11 (L_EVENTTYPE_VIDEO)
49 (L_RECORDER_DISK_READ_THRESHOLD_RESTORED)
The ID of the Video Server (Panel ID)
Disk Write Utilization Threshold Exceeded
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1954
11 (L_EVENTTYPE_VIDEO)
50 (L_RECORDER_DISK_WRITE_THRESHOLD_EXCEEDED)
The ID of the Video Server (Panel ID)
Disk Write Utilization Threshold Restored
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1955
11 (L_EVENTTYPE_VIDEO)
51 (L_RECORDER_DISK_WRITE_THRESHOLD_RESTORED)
The ID of the Video Server (Panel ID)
Warning: Unable to Achieve Current Required Storage
Setting
???
ID
sb_EventType
1956
11 (L_EVENTTYPE_VIDEO)
Copyright 2012 Lenel Systems International, Inc.
108
sb_EventID
ss_AccessPanelID
52 (L_RECORDER_STORAGE_SHORTAGE)
The ID of the Video Server (Panel ID)
Update: Now able to Achieve Current Required Storage
Setting
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1957
11 (L_EVENTTYPE_VIDEO)
53 (L_RECORDER_STORAGE_SHORTAGE_RESTORED)
The ID of the Video Server (Panel ID)
Warning: Unable to Meet Required Storage Setting! Deleting
Oldest Video
???
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1958
11 (L_EVENTTYPE_VIDEO)
54 (L_RECORDER_STORAGE_FILE_DELETED)
The ID of the Video Server (Panel ID)
Insufficient Frame Rate Detected
Generated when the IntelligentVideo engine does not receive a sufficient frame rate for the
events configured on the video channel.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1965
11 (L_EVENTTYPE_VIDEO)
55 (L_VIDEO_INSUFFICIENT_FRAME_RATE_DETECTED)
The ID of the Video Server (Panel ID)
Poor Video Visibility Detected
Generated when indefinite edges are present in the video image likely caused by environmental
factors such as fog or glare.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1966
11 (L_EVENTTYPE_VIDEO)
56 (L_VIDEO_POOR_VISIBILITY_DETECTED)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
109
Background Map Not Found
Generated when the engine cannot detect the background stickers. This may be caused when
there is poor contrast or the stickers are improperly shaped/separated.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1967
11 (L_EVENTTYPE_VIDEO)
57 (L_VIDEO_BACKGROUND_MAP_NOT_FOUND)
The ID of the Video Server (Panel ID)
Insufficient Frame Rate Restored
Generated when the frame rate reaches a value sufficient for the events configured on the video
channel.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1979
11 (L_EVENTTYPE_VIDEO)
58 (L_VIDEO_INSUFFICIENT_FRAME_RATE_RESTORED)
The ID of the Video Server (Panel ID)
Poor Video Visibility Restored
Generated when the video quality returns to an acceptable level.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1980
11 (L_EVENTTYPE_VIDEO)
59 (L_VIDEO_POOR_VISIBILITY_RESTORED)
The ID of the Video Server (Panel ID)
Background Map Found
Generated when background stickers are detected.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
1981
11 (L_EVENTTYPE_VIDEO)
60 (L_VIDEO_BACKGROUND_MAP_FOUND)
The ID of the Video Server (Panel ID)
Copyright 2012 Lenel Systems International, Inc.
110
Copyright 2012 Lenel Systems International, Inc.
111
Transmitter Events
Transmitter Tamper
Event to indicate a tamper alarm for a transmitter.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
770
12 (L_EVENTTYPE_TRANSMITTER)
1 (L_TRANSMITTER_TAMPER)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Low Battery
Event to indicate a low battery condition for a transmitter.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
771
12 (L_EVENTTYPE_TRANSMITTER)
2 (L_TRANSMITTER_LOWBATTERY)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Alarm
Event that indicates an alarm condition for a transmitter.
Copyright 2012 Lenel Systems International, Inc.
112
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
772
12 (L_EVENTTYPE_TRANSMITTER)
3 (L_TRANSMITTER_ALARM)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Tamper Restored
Used to indicate that a transmitter tamper alarm has been restored.
ID
sb_EventType
sb_EventID
773
12 (L_EVENTTYPE_TRANSMITTER)
4
(L_TRANSMITTER_TAMPER_RESTOR
E)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Low Battery Restored
Event used to indicate that a transmitter low battery alarm has been restored.
ID
sb_EventType
sb_EventID
774
12 (L_EVENTTYPE_TRANSMITTER)
5
Copyright 2012 Lenel Systems International, Inc.
113
(L_TRANSMITTER_LOWBAT_RESTOR
E)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Tilt
Used to indicate a transmitter tilt alarm for transmitters that support this functionality like mandown transmitters.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
779
12 (L_EVENTTYPE_TRANSMITTER)
6 (L_TRANSMITTER_TILT)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Tilt Restored
Event that indicates that a transmitter tilt condition has been restored.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
780
12 (L_EVENTTYPE_TRANSMITTER)
7 (L_TRANSMITTER_TILT_RESTORE)
Panel ID.
Receiver ID that received transmitter signal.
Copyright 2012 Lenel Systems International, Inc.
114
sl_TransmitterID
sb_EventParam
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Tilt Enabled
Event that indicates that the tilt control for a transmitter is enabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
781
12 (L_EVENTTYPE_TRANSMITTER)
8 (L_TRANSMITTER_TILT_ENABLE)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Tilt Disabled
Indicates that the tilt control for a transmitter is disabled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
782
12 (L_EVENTTYPE_TRANSMITTER)
9 (L_TRANSMITTER_TILT_DISABLE)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
Copyright 2012 Lenel Systems International, Inc.
115
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Pull Cord Alarm
Event that signals a transmitter pull cord alarm.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
783
12 (L_EVENTTYPE_TRANSMITTER)
10 (L_TRANSMITTER_PULLCORD)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Pull Cord Restored
Indicates that the transmitter pull cord alarm has been restored.
ID
sb_EventType
sb_EventID
784
12 (L_EVENTTYPE_TRANSMITTER)
11
(L_TRANSMITTER_PULLCORD_REST
ORE)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Copyright 2012 Lenel Systems International, Inc.
116
Transmitter Pre-Tilt
Event that indicates a transmitter pre-tilt condition.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sl_TransmitterID
sb_EventParam
785
12 (L_EVENTTYPE_TRANSMITTER)
12 (L_TRANSMITTER_PRE_TILT)
Panel ID.
Receiver ID that received transmitter signal.
Transmitter ID.
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Pre-Tilt Restored
Event that is used to indicate that the transmitter pre-tilt condition has been restored.
ID
sb_EventType
sb_EventID
786
12 (L_EVENTTYPE_TRANSMITTER)
13
(L_TRANSMITTER_PRE_TILT_RESTOR
E)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Temporary Tilt Disable
Event to indicate that the tilt has temporarily been disabled on the transmitter.
Copyright 2012 Lenel Systems International, Inc.
117
ID
sb_EventType
sb_EventID
787
12 (L_EVENTTYPE_TRANSMITTER)
14
(L_TRANSMITTER_TEMPTILT_DISABL
E)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Alarm Restored
Event used to indicate that a transmitter alarm has been restored.
ID
sb_EventType
sb_EventID
788
12 (L_EVENTTYPE_TRANSMITTER)
15
(L_TRANSMITTER_ALARM_RESTORE)
ss_AccessPanelID
Panel ID.
sb_DeviceID
Receiver ID that received transmitter signal.
sl_TransmitterID
Transmitter ID.
sb_EventParam
Can be used to indicate if the transmitter
message is one that is verified (IR signal
received by an RF receiver). To use set this
value to 1 and also fill in the
sl_EventParamValue.
sl_EventParamValue
1 – Verified Alarm (if sb_EventParam = 1)
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Inactivity
Event used to indicate that a transmitter that was supposed to generate a supervision message
failed to do so.
ID
sb_EventType
789
12 (L_EVENTTYPE_TRANSMITTER)
Copyright 2012 Lenel Systems International, Inc.
118
sb_EventID
16
(L_TRANSMITTER_NO_SUPERVISION)
ss_AccessPanelID
Panel ID.
sl_TransmitterID
Transmitter ID.
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Touch Alarm
An event generated by a transmitter when the item it is protecting is touched.
ID
sb_EventType
sb_EventID
1885
12 (L_EVENTTYPE_TRANSMITTER)
17
(L_TRANSMITTER_TOUCH_ALARM)
ss_AccessPanelID
Panel ID.
sl_TransmitterID
Transmitter ID.
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Removal Alarm
An event generated by a transmitter when the item it is protecting is removed.
ID
sb_EventType
sb_EventID
1886
12 (L_EVENTTYPE_TRANSMITTER)
18
(L_TRANSMITTER_REMOVAL_ALARM)
ss_AccessPanelID
Panel ID.
sl_TransmitterID
Transmitter ID.
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter Acknowledge
This event is reported when an alarm generated by a transmitter has been acknowledged.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sl_TransmitterID
sb_EventDataType
1982
12 (L_EVENTTYPE_TRANSMITTER)
19
(L_TRANSMITTER_ACKNOWLEDGE)
Panel ID.
Transmitter ID.
EVENT_DATA_TYPE_TRANSMITTER
Copyright 2012 Lenel Systems International, Inc.
119
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Transmitter No Response
This event is reported when an alarm generated by a transmitter has not been acknowledged.
ID
sb_EventType
sb_EventID
1983
12 (L_EVENTTYPE_TRANSMITTER)
20
(L_TRANSMITTER_NO_RESPONSE)
ss_AccessPanelID
Panel ID.
sl_TransmitterID
Transmitter ID.
sb_EventDataType
EVENT_DATA_TYPE_TRANSMITTER
su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.
Copyright 2012 Lenel Systems International, Inc.
120
Copyright 2012 Lenel Systems International, Inc.
121
Biometric Events
Accepted Biometric Score
Event that is used to indicate the score that was generated for a good biometric verification.
ID
839
sb_EventType
18 (L_EVENTTYPE_BIOMETRIC)
sb_EventID
0 (L_BIOMETRIC_ACCEPTED)
ss_AccessPanelID
Panel ID
sb_DeviceID
Device ID (Reader)
sb_EventDataType
EVENT_DATA_TYPE_CA
su_EventData.us_DataCA.sl_CardNumber Card Number
su_EventData.us_DataCA.sl_IssueCode
Issue Code (-1 if not used)
su_EventData.us_DataCA.sl_BioScore
Biometric score
Rejected Biometric Score
Event that is used to indicate the score that was generated for a bad biometric verification.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
su_EventData.us_DataCA.sl_BioScore
840
18 (L_EVENTTYPE_BIOMETRIC)
1 (L_BIOMETRIC_REJECTED)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Biometric score
No Biometric Template Data
Indicates that the biometric template was not found.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
su_EventData.us_DataCA.sl_CardNumber
su_EventData.us_DataCA.sl_IssueCode
841
18 (L_EVENTTYPE_BIOMETRIC)
2 (L_BIOMETRIC_TEMPLATE_NOT_FOUND)
Panel ID
Device ID (Reader)
EVENT_DATA_TYPE_CA
Card Number
Issue Code (-1 if not used)
Copyright 2012 Lenel Systems International, Inc.
122
Muster Events
Muster Mode Start
Event used to indicate that muster mode has started.
ID
sb_EventType
sb_EventID
1500
29 (L_EVENTTYPE_MUSTER)
0
(L_MUSTER_MUSTER_MODE_START)
sl_SegmentID
Segment ID
sb_EventDataType
EVENT_DATA_TYPE_AREAAPB
su_EventData.us_AreaAPBData.sl_AreaAPBID Area ID
Muster Mode Reset
ID
sb_EventType
sb_EventID
sl_SegmentID
sb_EventDataType
su_EventData.us_AreaAPBData.sl_AreaAPBID
1501
29 (L_EVENTTYPE_MUSTER)
1 (L_MUSTER_MUSTER_MODE_RESET)
Segment ID
EVENT_DATA_TYPE_AREAAPB
Area ID
Copyright 2012 Lenel Systems International, Inc.
123
Generic Events
Generic Event
Used to indicate that a generic event has been received. The alarm description will be the first
line of the associated event text.
ID
sb_EventType
sb_EventID
1799
30 (L_EVENTTYPE_GENERIC)
0 (L_GENERIC_GENERIC_EVENT)
Input Alarmed
Generic event for Input Alarmed state.
ID
sb_EventType
sb_EventID
1808
30 (L_EVENTTYPE_GENERIC)
1 (L_GENERIC_INPUT_ALARMED)
Input Normal
Generic event for Input Normal state.
ID
sb_EventType
sb_EventID
1809
30 (L_EVENTTYPE_GENERIC)
2 (L_GENERIC_INPUT_NORMAL)
Input Low Low
Generic event for Input Low Low state.
ID
sb_EventType
sb_EventID
1810
30 (L_EVENTTYPE_GENERIC)
3 (L_GENERIC_INPUT_LOW_LOW)
Input Low
Generic event for Input Low state.
ID
sb_EventType
sb_EventID
1811
30 (L_EVENTTYPE_GENERIC)
4 (L_GENERIC_INPUT_LOW)
Copyright 2012 Lenel Systems International, Inc.
124
Input High
Generic event for Input High state.
ID
sb_EventType
sb_EventID
1812
30 (L_EVENTTYPE_GENERIC)
5 (L_GENERIC_INPUT_HIGH)
Input High High
Generic event for Input High High state.
ID
sb_EventType
sb_EventID
1813
30 (L_EVENTTYPE_GENERIC)
6 (L_GENERIC_INPUT_HIGH_HIGH)
Copyright 2012 Lenel Systems International, Inc.
125
Point Of Sale Events
Item Sold
Indicates an item was sold.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1824
31 (L_EVENTTYPE_POS)
0 (L_POS_ITEM_SOLD)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Cash Amount Tendered
Generated when an event is used to indicate that a cash amount has been tendered.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1825
31 (L_EVENTTYPE_POS)
1 (L_POS_CASH_AMOUNT_TENDERED)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Credit Card Tendered
Generated when a credit card was used as tender.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1826
31 (L_EVENTTYPE_POS)
2 (L_POS_CREDIT_CARD_TENDERED)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Cash or Safe Drop
Generated when a transaction indicating a cash or safe drop has occurred.
ID
sb_EventType
sb_EventID
1827
31 (L_EVENTTYPE_POS)
3 (L_POS_CASH_OR_SAFE_DROP)
Copyright 2012 Lenel Systems International, Inc.
126
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Charge Account Tender
Generated when a charge account was used as tender.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1828
31 (L_EVENTTYPE_POS)
4 (L_POS_CHARGE_ACCOUNT_TENDER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Change Due
Generated when a transaction indicating the change due has occurred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1829
31 (L_EVENTTYPE_POS)
5 (L_POS_CHANGE_DUE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Check Tender
Generated when a check was used as tender.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1830
31 (L_EVENTTYPE_POS)
6 (L_POS_CHECK_TENDER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Clerk Name or Number
A transaction that reports the clerk’s name or number.
ID
sb_EventType
1831
31 (L_EVENTTYPE_POS)
Copyright 2012 Lenel Systems International, Inc.
127
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
7 (L_POS_CLERK_NAME_OR_NUMBER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Manufacturer Coupon
Indicates a manufacturer coupons.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1832
31 (L_EVENTTYPE_POS)
8 (L_POS_MANUFACTURER_COUPON)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Store Coupon
Indicates a store coupon.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1833
31 (L_EVENTTYPE_POS)
9 (L_POS_STORE_COUPON)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Cancel Entire Sale
Generated when a transaction is used to indicate that an entire sale was cancelled.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1834
31 (L_EVENTTYPE_POS)
10 (L_POS_CANCEL_ENTIRE_SALE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Debit, ATM, Check Card Tender
Transaction that indicated that a debit, ATM, or check card was used as tender.
ID
1835
Copyright 2012 Lenel Systems International, Inc.
128
sb_EventType
sb_EventID
31 (L_EVENTTYPE_POS)
11
(L_POS_DEBIT_ATM_CHECK_CARD_TENDER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
Discount Entered as Absolute Amount
Generated when a discount was entered as an absolute amount.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1836
31 (L_EVENTTYPE_POS)
12
(L_POS_DISCOUNT_ENTERED_AS_ABSOLUTE_AMOUNT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Deposit Amount Paid Pending Purchase
Event indicating that a deposit amount paid pending purchase has occurred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1837
31 (L_EVENTTYPE_POS)
13
(L_POS_DEPOSIT_AMOUNT_PAID_PENDING_PURCHASE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Deposit Return
Transaction for a deposit return.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1838
31 (L_EVENTTYPE_POS)
14 (L_POS_DEPOSIT_RETURN)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
129
Discount Entered as Percentage
Generated when a discount was entered as a percentage.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1839
31 (L_EVENTTYPE_POS)
15
(L_POS_DISCOUNT_ENTERED_AS_PERCENTAGE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Employee Sign On
Generated when an employee signs on.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1840
31 (L_EVENTTYPE_POS)
16
(L_POS_EMPLOYEE_SIGN_ON_TO_REGISTER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Employee Sign Off
Generated when an employee signs off.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1841
31 (L_EVENTTYPE_POS)
17
(L_POS_EMPLOYEE_SIGN_OFF_OF_REGISTER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Complimentary Tender
Generated when the tender was complimentary.
ID
sb_EventType
sb_EventID
1842
31 (L_EVENTTYPE_POS)
18 (L_POS_COMPLIMENTARY_TENDER)
Copyright 2012 Lenel Systems International, Inc.
130
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Foodstamps Tender
Indicates that food stamps were used as tender.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1843
31 (L_EVENTTYPE_POS)
19
(L_POS_FOODSTAMPS_WIC_ETC_TENDER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Gasoline Prepayment
Transaction for a gasoline prepayment.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1844
31 (L_EVENTTYPE_POS)
20 (L_POS_GASOLINE_PREPAYMENT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Gasoline Prepayment Refund
Transaction for a gasoline prepayment refund.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1845
31 (L_EVENTTYPE_POS)
21
(L_POS_GASOLINE_PREPAYMENT_REFUND)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Information Message
Used to report information messages.
Copyright 2012 Lenel Systems International, Inc.
131
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1846
31 (L_EVENTTYPE_POS)
22 (L_POS_INFORMATION_MESSAGE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Lottery Pay Out
Generated when a lottery pay out has occurred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1847
31 (L_EVENTTYPE_POS)
23 (L_POS_LOTTERY_PAY_OUT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Lottery Sale
Generated when an event for a lottery sale has occurred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1848
31 (L_EVENTTYPE_POS)
24 (L_POS_LOTTERY_SALE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Manufacturer Coupon Redemption
Transaction generated for a manufacturer coupon redemption.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1849
31 (L_EVENTTYPE_POS)
25
(L_POS_MANUFACTURER_COUPON_REDEMPTION)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
132
Miscellaneous Tender
Generated when miscellaneous tender is used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1850
31 (L_EVENTTYPE_POS)
26 (L_POS_MISCELLANEOUS_TENDER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Quantity or Weight
An event indicating a quantity or weight.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1851
31 (L_EVENTTYPE_POS)
27 (L_POS_QUANTITY_OR_WEIGHT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
No Sale
Transaction generated for a no sale.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1852
31 (L_EVENTTYPE_POS)
28 (L_POS_NO_SALE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Negative Tax
Generated when negative tax is used.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1853
31 (L_EVENTTYPE_POS)
29 (L_POS_NEGATIVE_TAX)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
133
Override Preprogrammed Price
Generated when the preprogrammed price is overridden.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1854
31 (L_EVENTTYPE_POS)
30
(L_POS_OVERRIDE_PREPROGRAMMED_PRICE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Pick Up
Transaction indicating a pick up has occurred.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1855
31 (L_EVENTTYPE_POS)
31 (L_POS_PICK_UP)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Price Lookup
Generated when a price lookup has taken place.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1856
32 (L_EVENTTYPE_POS)
28 (L_POS_PRICE_LOOKUP)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Pay Out
Generated when a payout takes place.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
1857
31 (L_EVENTTYPE_POS)
33 (L_POS_PAY_OUT)
ID of Point of sale controller.
ID of register or point of sale device.
Copyright 2012 Lenel Systems International, Inc.
134
sb_EventDataType
EVENT_DATA_TYPE_STATUS
Payment Toward Charge Account Balance
Generated when a payment toward an account balance.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1858
31 (L_EVENTTYPE_POS)
34
(L_POS_PAYMENT_TOWARD_CHARGE_ACC_BALANCE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Payment of Refund to Customer
Generated when a payment or refund is given to a customer.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1859
31 (L_EVENTTYPE_POS)
35
(L_POS_PAYMENT_OF_REFUND_TO_CUSTOMER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Merchandise Returned
Generated when merchandise is returned.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1860
31 (L_EVENTTYPE_POS)
36 (L_POS_MERCHANDISE_RETURNED)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Sale Subtotal
A transaction that reports the sale subtotal.
ID
sb_EventType
1861
31 (L_EVENTTYPE_POS)
Copyright 2012 Lenel Systems International, Inc.
135
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
37 (L_POS_SALE_SUBTOTAL)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Taxable Subtotal
Transaction that reports the taxable subtotal.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1862
31 (L_EVENTTYPE_POS)
38 (L_POS_TAXABLE_SUBTOTAL)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Current Time
An event that reports the current time.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1863
31 (L_EVENTTYPE_POS)
39 (L_POS_CURRENT_TIME)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Transaction Number
Event Generated that indicates the transaction number of the sales transaction.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1864
31 (L_EVENTTYPE_POS)
40 (L_POS_TRANSACTION_NUMBER)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Negative Total
Generated when there is a negative total.
ID
1865
Copyright 2012 Lenel Systems International, Inc.
136
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
31 (L_EVENTTYPE_POS)
41 (L_POS_NEGATIVE_TOTAL)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Total Amount Due
Transaction indicating the total amount due.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1866
31 (L_EVENTTYPE_POS)
42 (L_POS_TOTAL_AMOUNT_DUE)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Tax Amount
Event that indicates the tax amount.
ID
Sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1867
31 (L_EVENTTYPE_POS)
43 (L_POS_TAX_AMOUNT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Value Added
Event that indicates value added.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1868
31 (L_EVENTTYPE_POS)
44 (L_POS_VALUE_ADDED)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Item Correct of Previously Entered Item
Generated to indicate that an item was
corrected.
Copyright 2012 Lenel Systems International, Inc.
137
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1869
31 (L_EVENTTYPE_POS)
45
(L_POS_ITEM_CORRECT_OF_PREV_ENTERED_ITEM)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Void or Error Correction
Transaction that indicates a void or error correction.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1870
31 (L_EVENTTYPE_POS)
46
(L_POS_VOID_OR_ERROR_CORRECTION)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Register X Report
Indicates a X report was generated. X reports are financial, end of day, clerk, etc.reports.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1871
31 (L_EVENTTYPE_POS)
47 (L_POS_REGISTER_X_REPORT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Register Z Report
Indicates a Z report was generated. Z reports are the same as X reports, but resets totals to zero.
ID
sb_EventType
sb_EventID
ss_AccessPanelID
sb_DeviceID
sb_EventDataType
1872
31 (L_EVENTTYPE_POS)
48 (L_POS_REGISTER_Y_REPORT)
ID of Point of sale controller.
ID of register or point of sale device.
EVENT_DATA_TYPE_STATUS
Copyright 2012 Lenel Systems International, Inc.
138
Copyright 2012 Lenel Systems International, Inc.
139
Status Messages
Status Messages are used to send status information back to the clients and do not get saved to
the database. Status Messages do not use the sb_EventType and sb_EventID fields of the
LNLMESSAGE structure but do set the sb_MessageType.
sb_MessageType
ss_AccessPanelID
sb_DeviceID
sb_InputDevID
LNLMSG_TYPE_STATUS
Panel ID
Sub device ID (0 if event is for panel).
Input device ID (0 if event is for sub device or
panel).
sb_EventDataType
EVENT_DATA_TYPE_STATUSREQUEST
su_EventData.us_StatusRequest.sl_StatusType Type of status (See the IDistributeEvent
documentation for additional information on
the DATA_STATUSREQUEST structure and
the various status types).
su_EventData.us_StatusRequest.sl_Status
Status Data (See the IDistributeEvent
documentation for additional information on
the DATA_STATUSREQUEST structure and
the various data values).
An example of a status message was shown above after the Events overview.
Copyright 2012 Lenel Systems International, Inc.
140
Index
Access Denied Under Duress.................... 22
Access Granted ....................................... 3, 8
Access Granted - Anti-Passback Not Used25
Access Granted - Anti-Passback Used ...... 25
Access Granted No Entry Made ................. 8
Access Granted On Facility Code ...... 8, 125,
126, 127, 128, 129, 130, 131, 132, 133,
134, 135, 136, 137
Access Granted On Facility Code No Entry
Made ....................................................... 9
Access Granted Under Duress ............ 17, 22
Access Granted Under Duress – No Entry
Made ..................................................... 22
Alarm Active ............................................. 27
Anti-Passback Invalid Entry Reader ......... 26
Anti-Passback Invalid Exit Reader ........... 26
Anti-Passback Violation ........................... 24
Archive Server Failure .............................. 99
Area Closed ............................................... 25
Area Limit Exceeded ................................ 24
Asset Denied – Asset Disable Command
Sent ............................... 16, 43, 44, 45, 77
Asset Denied - Invalid Access .................. 75
Asset Denied - Invalid Asset..................... 75
Asset Denied - Invalid Cardholder ........... 75
Asset Denied - No Asset Privileges .......... 76
Asset Granted - Asset Owner .................... 76
Asset Granted - Asset Privileges Only...... 76
Audibles Silenced ..................................... 81
Audibles Unsilenced ................................. 81
Cabinet Tamper ......................................... 31
Call Conferenced ...................................... 95
Call Disconnected ..................................... 92
Call Ended................................................. 94
Call Established ........................................ 94
Call Failed ................................................. 93
Call Queued .............................................. 95
Call Removed from Queue ....................... 96
Call to a Busy Subscriber .......................... 91
Call to a Private Subscriber....................... 91
Call to an Open Subscriber ....................... 91
Call Transferred ........................................ 95
Canceled Cabinet Tamper ......................... 32
Canceled Grounded Loop ......................... 33
Canceled Line Error .................................. 32
Canceled Open Line .................................. 33
Canceled Power Failure ............................ 32
Canceled Shorted Line .............................. 33
Command 10 Set From Reader ................. 39
Command 11 Set From Reader ................. 39
Command 12 Set From Reader ................. 39
Command 13 Set From Reader ................. 40
Command 14 Set From Reader ................. 40
Command 15 Set From Reader ................. 40
Command 4 Set From Reader ................... 37
Command 5 Set From Reader ................... 37
Command 6 Set From Reader ................... 38
Command 7 Set From Reader ................... 38
Command 8 Set From Reader ................... 38
Command 9 Set From Reader ................... 38
Command Pin+10 Set From Reader ......... 36
Command Pin+20 Set From Reader ......... 36
Communications Lost ............................... 40
Communications Restored ........................ 41
DATA_ASSET ............................. 75, 76, 77
DATA_STATUSREQUEST .................. 139
Database Error in Panel Download ........... 34
Denied Count Exceeded ............................ 12
Denied Events ........................................... 12
Denied UnMask – Active Zones in Group 15
Disk Full Warning..................................... 42
Door Contact Tamper ............................... 31
Door Contact Tamper Canceled................ 31
Door Forced Open................................. 4, 29
Door Forced Open Canceled ..................... 29
Door Held Open ........................................ 30
Door Held Open Canceled ........................ 30
Door Shunt Command Executed From
Reader ................................................... 36
Door Shunt Command Results - Canceled 37
Driver Error In Panel Download ............... 35
Fire Alarm Acknowledge .......................... 78
Fire Alarm Block Acknowledge ............... 78
Fire Alarm In............................................. 78
Fire Alarm Out .......................................... 78
Full Panel Download Completed .............. 35
Copyright 2012 Lenel Systems International, Inc.
141
Full Panel Download Started .................... 34
Global I/O Executed Function List ........... 41
Grounded Loop Alarm Active .................. 29
Hold........................................................... 93
Host Executed Function List ..................... 36
Inactive Badge .......................................... 14
Incoming Call............................................ 92
Initiated ..................................................... 94
Intercom Exchange Failure ....................... 96
Intercom Function ..................................... 92
Invalid Access Level ................................. 14
Invalid Badge ............................................ 13
Invalid Card Format .................................. 12
Invalid Facility Code................................. 12
Invalid Issue Code..................................... 13
Invalid PIN Number .................................. 13
Line Error Active ...................................... 28
LNLMESSAGE .............................. 4, 5, 139
Low Voltage.............................................. 42
Low Voltage Restored .............................. 43
Motion Detected........................................ 98
Motion Detected Restored ........................ 98
No Command Authority ........................... 15
OnlineCanceled ......................................... 27
Open Device Events .................................... 3
Open Line Alarm Active ........................... 28
Overview ..................................................... 3
Panel Power Up Complete ........................ 34
Power Failure ............................................ 32
Reader Excluded From Access List .......... 15
Reader Input Tamper ................................ 30
Reader Input Tamper Canceled ................ 30
Relay Contact Activated ........................... 35
Relay Contact Deactivated........................ 35
Request By PIN Only................................ 12
Retrieved ................................................... 94
Ringing...................................................... 93
Security Alarm Acknowledge ................... 80
Security Alarm Block Acknowledge ........ 80
Security Alarm In ...................................... 80
Security Alarm Out ................................... 80
Shorted Line Alarm Active ....................... 28
Status In .................................................... 81
Status Messages ...................................... 139
Status Out .................................................. 82
Supervisory Acknowledge ........................ 79
Supervisory Block Acknowledge ............. 79
Supervisory In ........................................... 79
Supervisory Out ........................................ 79
System Reset ............................................. 81
Tamper Alarm Active ............................... 28
Test Report ................................................ 93
Timeout Exceeded – No Second Card ...... 24
Transmitter Alarm ................................... 111
Transmitter Alarm Restored ................... 117
Transmitter Inactivity.............. 117, 118, 119
Transmitter Low Battery ................. 111, 112
Transmitter Low Battery Restored.......... 112
Transmitter Pre-Tilt ................................ 116
Transmitter Pre-Tilt Restored ................. 116
Transmitter Pull Cord Alarm .................. 115
Transmitter Pull Cord Restored .............. 115
Transmitter Tamper ................................ 111
Transmitter Tamper Restored ................. 112
Transmitter Temporary Tilt Disable ....... 116
Transmitter Tilt ....................................... 113
Transmitter Tilt Disabled ........................ 114
Transmitter Tilt Enabled ......................... 114
Transmitter Tilt Restored ........................ 113
Trouble Acknowledge ............................... 83
Trouble Block Acknowledge .................... 82
Trouble In.................................................. 82
Trouble Out ......................................... 82, 83
Trouble Report .......................................... 92
Unanswered Call ....................................... 95
Use Limit Exceeded .................................. 16
User Generated Video Event .................... 99
Video Event Threshold Reached .............. 98
Video Server Disk Full ............................. 98
Watch Tour Station Late ........................... 41
Copyright 2012 Lenel Systems International, Inc.
142