Skip to main content

Celonis Product Documentation

Previous Bugs

New data integration content available

You're currently viewing a data integration topic that has been replaced and will eventually be removed from our documentation.

For the latest data integration content, see: Data Integration.

Package version 1.0.0 contained a bug in one of the PQL formulas in the Data Consumption Monitor. As a consequence, the APC per table calculation might have been wrong. If the data shown in the Data Consumption Monitor differs from the APC calculation in the licensing section, check the Current_APC_per_Table_Bytes PQL formula in the Data Consumption Monitor.

The incorrect version was:

PU_LAST("data_tables", "data_consumption_events"."size_in_bytes", order by "data_consumption_events"."created_at")

To account for tables that have been deleted, it must be updated to:

PU_MAX (
   "data_tables",
   "data_consumption_events"."size_in_bytes",
   "data_consumption_events"."created_at"
   = PU_MAX(CONSTANT(), "data_consumption_events"."created_at")
)

If you were affected, simply replace the incorrect formula with the new one.