ACTIVITY_LEAD
Applies to: CELONIS 4.6 CELONIS 4.7
Description
ACTIVITY_LEAD returns the activity from the row that follows the current activity by offset number of rows within a case.
Syntax
ACTIVITY_LEAD ( table.column [, offset ] )
column: String column which has to be joinable to the activity table.
offset: The number of non-NULL activities following the current activity. The default value is 1.
NULL handling
The leading value for a NULL value is the same value as the leading value of the last non-NULL value. The offset parameter counts only non-NULL values.
Examples
[1] Simple example for ACTIVITY_LEAD returning the next activity within a case. If activity has no following activity, NULL is returned.
|
[2] Example for ACTIVITY_LEAD with offset = 2. ACTIVITY_LEAD returns the activity from the row that follows the current activity by 2 rows.
|
[3] Null activities are skipped for calculation of ACTIVITY_LEAD.
|