Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Create an event

If you do not find a suitable existing event, you can create your own.

Before you begin

Role required: events_admin

About this task

The gs.EventQueue function works directly with the backend and therefore business rules that are called by gs.EventQueue() are not invoked.

Procedure

  1. Navigate to All > System Policy > Events > Registry, and then select New.

  2. On the form fill in the fields.

FieldDescription
Event nameName of your new event.
TableDatabase table for this event. Note: Only tables and database views that are in the same scope as the event appear on the listing.
QueueName of the queue that the event is placed into when triggered.Use only lowercase letters, no spaces, and no special characters except underscore \(\_\). For example, `my_queue`. See Using custom queues to process events.
PriorityOrder in which messages will be processed. Lower values have higher priority.Note: The com.glide.sysevent.priority.enabled system property is enabled by default. If you disable it, events processing is not done by priority.
Caller AccessRestricted caller access settings.- Caller Restriction: calls to the resource must be manually approved. - Caller Tracking: Calls to the resource are automatically approved.
Fired byName of the business rule that runs the event. This field is for reference only and is not used by any process. Make sure that there is enough information to locate your event again.
DescriptionShort description of the purpose of the event.
  1. Click the Business Rules related link.

  2. If you are creating an event for a base system table, select the existing event business rule for the table.

    For example, select the sc request events business rule to create a custom Request event.

  3. If you are updating an existing event business rule, add a new condition to the Script.

    The following sample script adds a request.commented event with the user's Sys ID as parm1 and the user's user name for parm2.

    if (current.operation() != 'insert' && current.comments.changes()) {
    gs.eventQueue('request.commented', current, gs.getUserID(), gs.getUserName());
    }
    
  4. If you are creating an event for a custom table, create a new business rule that runs after database operations.

    For example, this business rule defines several events for a custom application called Marketing Events.

FieldValue
NameAttendee Events
TableAttendee \[x\_snc\_marketing\_ev\_attendee\]
ApplicationMarketing Events
AdvancedSelected
Whenafter
InsertSelected
UpdateSelected
DeleteSelected
ScriptAdd custom script that: - Checks for one or more conditions on the current record. - Calls the gs.eventQueue\(\) method and specifies an event name. See code sample.
**Note:** If you add **Filter Conditions**, **Role conditions**, or a **Condition** value, verify it runs the business rule when expected.

```
(function executeRule(current, previous /*null when async*/) {
   //This function will be automatically called when this rule is processed.
        //Add event when attendee inserted
        if(current.operation() == 'insert' && current.marketing_event.changes()) {
                gs.eventQueue('x_snc_marketing_ev.attendee.added', current,
current.marketing_event, current.email);
        }
        //Add event when marketing event changes
        if(current.operation() == 'update' && current.marketing_event.changes()) {
                gs.eventQueue('x_snc_marketing_ev.attendee.deleted', previous,
previous.marketing_event, previous.email);
                gs.eventQueue('x_snc_marketing_ev.attendee.added', current,
current.marketing_event, current.email);
        }
        //Add event when attendee deleted
        if(current.operation() == 'delete') {
                gs.eventQueue('x_snc_marketing_ev.attendee.deleted', current,
              current.marketing_event, current.email);
}
})(current, previous);

```
  1. Register the event.

What to do next

Create a script action or notification to process the event.

Parent Topic:Managing system events

Related topics

Register an event

Script actions