Revenue Changes
Revenue facts on changes, defining price and volume per period, value type, and revenue type.
Facts
Definitions
| Column | Description |
|---|---|
| period_id | Factual reference to the period (links to periods). |
| revenue_type_id | Type of revenue change (links to revenue_types, e.g., New Booking, Upsell). |
| value_type_id | Type of value measured (links to value_types, e.g., actuals, budget). |
| nr_of_customers | Volume variable with number of customers contributing to this revenue change. |
| value_per_customer | Pricing variable, with revenue per customer for this change. |
Sample & Implementation
| period_id | revenue_type_id | value_type_id | nr_of_customers | value_per_customer |
|---|---|---|---|---|
| 1 | 1 | 2 | 100 | 2300 |
Data Format
Field
Type
The primary key is formed by constrainst on periods, revenue types, and value types:
PRIMARY KEY (period_id, revenue_type_id, value_type_id)