Skip to main content

Celonis Product Documentation

PROCESS_ORDER
Deprecated

Warning

Please use INDEX_ACTIVITY_ORDER instead.

Description

PROCESS_ORDER returns the position of each activity within a case. Only not null activities are counted.

Syntax
  PROCESS_ORDER ( activity_table.column )
 
  • column: A column of an activity table.

Examples

[1]

Example with two cases in which each activity is taken into account.

Query

Column1

         PROCESS_ORDER ( "Table1"."ACTIVITY" )
        

Input

Output

Table1

CASE_ID : string

ACTIVITY : string

TIMESTAMP : date

'1'

'A'

Tue Jan 01 2019 13:00:00.000

'1'

'B'

Tue Jan 01 2019 13:01:00.000

'1'

'B'

Tue Jan 01 2019 13:02:00.000

'2'

'A'

Tue Jan 01 2019 13:03:00.000

'2'

'B'

Tue Jan 01 2019 13:04:00.000

Result

Column1 : int

1

2

3

1

2

[2]

Example with two cases in which only B values are taken into account.

Query

Column1

         PROCESS_ORDER ( REMAP_VALUES ( "Table1"."ACTIVITY" , [ 'A' , NULL ] ) )
        

Input

Output

Table1

CASE_ID : string

ACTIVITY : string

TIMESTAMP : date

'1'

'A'

Tue Jan 01 2019 13:00:00.000

'1'

'B'

Tue Jan 01 2019 13:01:00.000

'1'

'B'

Tue Jan 01 2019 13:02:00.000

'2'

'A'

Tue Jan 01 2019 13:03:00.000

'2'

'B'

Tue Jan 01 2019 13:04:00.000

Result

Column1 : int

null

1

2

null

1

See also: