iap_field

The iap_field table holds the list of fields that will be published for a given monitor ID.

Structure

The iap_field table has the following structure:

TABLE iap_field (
monitor_id numeric(10) NOT NULL,
field_name VARCHAR(31) NOT NULL)

Column

Description

monitor_id

Unique ID of the record for the procedure or node being monitored, as defined in the iap_monitor table.

field_name

The name of the iProcess Engine field for which data is to be sent out with the activity event.

Primary Key

The following primary key is defined for this table.

Key Name

Column(s)

pk_iap_field

monitor_id
field_name

Foreign Keys

The following foreign key is defined for this table.

Key Name

Column(s)

Referenced in Table...

fk_iap_field1

monitor_id

iap_monitor

Indexes

The following index is defined for this table.

Index Name

Column(s) Indexed

idx_iap_field_fk

monitor_id

Table Activity

The iap_field table contains one row for each field that will be published for every activity. Rows are added, updated and deleted in the following situations.

A row is...

When...

added

a new field is created.

updated

a field’s details are updated.

deleted

never.