iap_activity

The iap_activity table holds the activity and steps which are configured for a given monitor record.

Structure

The iap_activity table has the following structure:

TABLE iap_activity(
monitor_id numeric(10) NOT NULL,
activity_id numberic(3) NOT NULL,
step_name varchar(8) 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.

activity_id

Unique ID which represents the activity that is being monitored on the specified iProcess Engine procedure or step.

step_name

The name of the step in the procedure to be monitored. If the name of the step is $ALL$, it means every step in the procedure.

Primary Key

The following primary key is defined for this table.

Key Name

Column(s)

pk_iap_activity

monitor_id
activity_id
step_name

Triggers

None.

Indexes

None.

Table Activity

The iap_activity table contains one row for each activity that is being monitored on a procedure or node. Rows are added, updated and deleted in the following situations.

A row is...

When...

added

a new activity to be monitored has been configured for a procedure or node.

updated

an activity’s details have been updated for a procedure or node.

deleted

never.