pub enum BillingPositionKind {
Show 16 variants
NneArbeit,
NneArbeitHt,
NneArbeitNt,
NneArbeitModul1,
NneArbeitModul3,
NneLeistung,
NneGasGrundpreis,
Konzessionsabgabe,
Mehrmenge,
Mindermenge,
MsbGrundgebuehr,
Messdienstleistung,
GasAwhSperrung,
GasAwhEntsprrung,
GasAwhSonstige,
Blindmehrarbeit,
}Expand description
Semantic kind of a billing position — used by the service layer to derive
the correct BdewArtikelnummer for the BO4E Rechnungsposition.
grid-billing has no rubo4e dependency, so this enum is the bridge:
the service layer maps BillingPositionKind → BdewArtikelnummer in
into_rechnung(). Every position in every GridSettlement must carry
a kind so the INVOIC Rechnungsposition.artikelnummer is never missing.
§BDEW INVOIC AHB requirement
BDEW INVOIC AHBs (FV2025-10-01) mandate artikelnummer in every
SG28 PIA line item. Missing or wrong Artikelnummern cause counterparty
APERAK rejection. The invoic-checker checks 6 plausibility rules;
Artikelnummer matching is part of the tariff-found rule (check 5).
§Mapping to BdewArtikelnummer
BillingPositionKind | BdewArtikelnummer | INVOIC AHB ref |
|---|---|---|
NneArbeit | Wirkarbeit | PID 31001/31005/31006 Arbeit |
NneArbeitHt | Wirkarbeit | PID 31001 §14a Modul 2 HT |
NneArbeitNt | Wirkarbeit | PID 31001 §14a Modul 2 NT |
NneArbeitModul1 | Wirkarbeit | PID 31001 §14a Modul 1 (rate reduced) |
NneLeistung | Leistung | PID 31001/31005 RLM kW charge |
NneGasGrundpreis | Grundpreis | PID 31005 monthly base fee |
Konzessionsabgabe | Konzessionsabgabe | PID 31001/31006 KAV §2 |
Mehrmenge | Mehrmenge | PID 31002 positive imbalance |
Mindermenge | Mindermenge | PID 31002 negative imbalance (credit) |
MsbGrundgebuehr | EntgeltEinbauBetriebWartungMesstechnik | PID 31009 MSB monthly fee |
Messdienstleistung | EntgeltMessungAblesung | PID 31009 reading service |
GasAwhSperrung | Sperrkosten | PID 31011 AWH disconnection |
GasAwhEntsprrung | Entsperrkosten | PID 31011 AWH reconnection |
GasAwhSonstige | EntgeltAbrechnung | PID 31011 other AWH |
Blindmehrarbeit | Blindmehrarbeit | Reactive energy excess |
Variants§
NneArbeit
Netznutzungsentgelt Arbeit — flat-rate active energy charge (kWh).
SLP or Gas. → BdewArtikelnummer::Wirkarbeit
NneArbeitHt
§14a Modul 2 Hochlast (HT) Arbeit — time-variable higher-price band.
→ BdewArtikelnummer::Wirkarbeit
NneArbeitNt
§14a Modul 2 Niedertarif (NT) Arbeit — time-variable lower-price band.
→ BdewArtikelnummer::Wirkarbeit
NneArbeitModul1
§14a Modul 1 Arbeit — flat percentage reduction applied to Arbeitspreis.
→ BdewArtikelnummer::Wirkarbeit (same article, different rate)
NneArbeitModul3
§14a Modul 3 Spotpreis-NNE — per-dispatch-interval variable rate position.
One InvoicePosition is generated per dispatch interval from
NneInput::sect14a_modul3_intervals. Each carries a
lastvariable_preisposition_json with the BO4E LastvariablePreisposition
COM data (pricing formula parameters) for ERP-side validation and portal
display of the per-interval tariff breakdown.
Regulatory basis: BNetzA BK6-22-300 Anlage 2 §3 — Spotpreis-Netzentgelt.
→ BdewArtikelnummer::Wirkarbeit
NneLeistung
Netznutzungsentgelt Leistung — RLM peak demand charge (kW).
→ BdewArtikelnummer::Leistung
NneGasGrundpreis
Gas NNE monthly base fee (Grundpreis / Verrechnungspreis).
GasNEV §14. → BdewArtikelnummer::Grundpreis
Konzessionsabgabe
Konzessionsabgabe — KAV §2 municipal concession fee.
→ BdewArtikelnummer::Konzessionsabgabe
Mehrmenge
Mehrmengen — positive imbalance (actual > profiled).
PID 31002 StromNZV §15 / GasNZV §14. → BdewArtikelnummer::Mehrmenge
Mindermenge
Mindermengen — negative imbalance credit note (actual < profiled).
PID 31002. → BdewArtikelnummer::Mindermenge
MsbGrundgebuehr
MSB Grundgebühr Messstellenbetrieb — monthly metering base fee.
MsbG §§6–7. → BdewArtikelnummer::EntgeltEinbauBetriebWartungMesstechnik
Messdienstleistung
Messdienstleistung — periodic reading service fee.
MessZV §2. → BdewArtikelnummer::EntgeltMessungAblesung
GasAwhSperrung
Gas AWH Sperrung — abrechnungswürdige Handlung disconnection.
BK7-24-01-009 §5.4. → BdewArtikelnummer::Sperrkosten
GasAwhEntsprrung
Gas AWH Entsperrung — abrechnungswürdige Handlung reconnection.
BK7-24-01-009 §5.4. → BdewArtikelnummer::Entsperrkosten
GasAwhSonstige
Gas AWH sonstige — other abrechnungswürdige Handlung.
BK7-24-01-009 §5.4. → BdewArtikelnummer::EntgeltAbrechnung
Blindmehrarbeit
Blindmehrarbeit — reactive energy excess charge.
StromNEV §18. → BdewArtikelnummer::Blindmehrarbeit
Trait Implementations§
Source§impl Clone for BillingPositionKind
impl Clone for BillingPositionKind
Source§fn clone(&self) -> BillingPositionKind
fn clone(&self) -> BillingPositionKind
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more