scheduleevent

These record events against resources. The type of events are defined in event typesand relate to what happens when the system is interacting dynamically withmobile devices.

Syntax:

[ DynamicComponentDependency ] scheduleevent ScheduleEventName {
[ TimeSpanUOM ] [ TimeZoneOverride ] [ ChangeDetection ] [ CustomChangeHandler ] #SqlDml.QueryBlock ;
}

Mandatory columns

Column Name Data Type Description Default Value
id String(32) Defines a unique identifier for the schedule event.
date_time_stamp Date Provides the system date and time when the event was recorded.
event_date_time Date Specifies the date and time the event actually happened.
event_type_id String(32) Specifies the event type id.
resource_id String(32) Specifies the resource id. The resource the event occurred on.

Optional columns

Column Name Data Type Description Default Value
latitude Double Provides the latitude co-ordinate
location_id String(32) Provides the location id
longitude Double Provides the longitude co-ordinate


            scheduleevent ScheduleEvent {{SelectName}} {
               SELECT
                     ..                  id,
                     ..                  date_time_stamp,
                     ..                  event_date_time,
                     ..                  event_type_id,
                     ..                  resource_id,
                  -- optional columns
                     ..                  latitude,
                     ..                  location_id,
                     ..                  longitude
               FROM {{sourceTableName}}
               WHERE ...;
            }

Note:   All selected columns must have correct aliases that match a IFS Scheduling ScheduleEvent.

ScheduleEventName

Syntax:

<Identifier>


This page is generated from IFS Developer Studio at 2021-08-13 08:49.