Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Applies to:  

Status
colourGreen
titleCelonis 4.0
 
Status
colourGreen
titleCelonis 4.2
 
Status
colourGreen
titleCelonis 4.3
 
Status
colourGreen
titleCelonis 4.4
 

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, for most process functions, freely chosen. The Activity column can also be pre-processed with other functions.

Grouping

Example

REMAP_VALUES groups B and C by mapping both to the same activity label. Panel
titleQuery
Column1
Code Block
languagetext
themeDJango
REMAP_VALUES("Table1".ACTIVITY, ['B', 'BC'], ['C', 'BC'])
Panel
titleInput
Table1
CASE_ID : INTACTIVITY : STRINGTIMESTAMP : DATE
1
'A'
Sun Jan 01 2017 13:00:00.000
1
'B'
Sun Jan 01 2017 13:01:00.000
1
'C'
Sun Jan 01 2017 13:02:00.000
Panel
titleOutput
Result
Column1 : STRING'A''BC''BC'

Hiding

Example

REMAP_VALUES hides activity B by mapping it to null. Panel
titleQuery
Column1
Code Block
languagetext
themeDJango
REMAP_VALUES("Table1".ACTIVITY, ['B', NULL])
Panel
titleInput
Table1
CASE_ID : INTACTIVITY : STRINGTIMESTAMP : DATE
1
'A'
Sun Jan 01 2017 13:00:00.000
1
'B'
Sun Jan 01 2017 13:01:00.000
1
'C'
Sun Jan 01 2017 13:02:00.000
Panel
titleOutput
Result
Column1 : STRING'A''null''C'