Skip to main content

Celonis Product Documentation

Process

Description

Process functions perform calculations based on the Case-Id and the Activity column of the event log.

While the Case-Id column is determined by the settings in the Data Model editor, the Activity column can be chosen freely for most process functions. The Activity column can also be preprocessed with other functions. For example with REMAP_VALUES, grouping and hiding of activities can be achieved.

Grouping

[1]

REMAP_VALUES groups B and C by mapping both to the same activity label.

Query

Column1

         REMAP_VALUES ( "Table1".ACTIVITY , [ 'B' , 'BC' ] , [ 'C' , 'BC' ] )
        

Input

Output

Table1

CASE_ID : int

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

'C'

Tue Jan 01 2019 13:02:00.000

Result

Column1 : string

'A'

'BC'

'BC'

Hiding

[2]

REMAP_VALUES hides activity B by mapping it to null.

Query

Column1

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

Input

Output

Table1

CASE_ID : int

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

'C'

Tue Jan 01 2019 13:02:00.000

Result

Column1 : string

'A'

null

'C'