Object and Event Transformations
In Object-Centric Process Mining (OCPM), custom transformations allow you to clean, filter, and shape your raw source data before mapping it to the semantic layer. Depending on your data architecture and performance requirements, you can output your transformations into a standalone database table or map them directly to object and event attributes.
Transformation selection matrix
Use the matrix below to determine the best transformation method for your specific development scenario:
Transformation type | Storage behavior | Best used for | Performance and downstream impact |
|---|---|---|---|
Table Transformations | Creates a new physical database table. |
| High efficiency. Follows a "build once, reference many" architecture to prevent redundant query execution. |
Object transformations | Evaluated dynamically during object runtime mapping. |
| Lightweight. Ideal for highly localized logic specific to a single business entity. |
Event transformations | Evaluated dynamically during event runtime mapping. |
| Targeted. Directly populates the activity history of your process logs. |