P_RARevnExplRecnclnKeyGroup

DDL: P_RAREVNEXPLRECNCLNKEYGROUP Type: view_entity COMPOSITE

P_RARevnExplRecnclnKeyGroup is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_RevenueAccountingContract) and exposes 5 fields with key fields PerformanceObligation, RevnAcctgReconciliationKey.

Data Sources (1)

SourceAliasJoin Type
I_RevenueAccountingContract Contract inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PerformanceObligation RecnclnKeyGroup PerformanceObligation Performance Obligation
KEY RevnAcctgReconciliationKey RecnclnKeyGroup RevnAcctgReconciliationKey
FiscalYearPeriod RecnclnKeyGroup FiscalYearPeriod Period/Year
RevenueAccountingContract RecnclnKeyGroup RevenueAccountingContract Revenue Contract
RelatedChgTypeItemKeyGroupId RecnclnKeyGroup RecnclnKeyGroupId

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_RARevnExplRecnclnKeyGroup.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW P_RARevnExplRecnclnKeyGroup AS
SELECT
  RecnclnKeyGroup.PerformanceObligation AS PerformanceObligation,
  RecnclnKeyGroup.RevnAcctgReconciliationKey AS RevnAcctgReconciliationKey,
  RecnclnKeyGroup.FiscalYearPeriod AS FiscalYearPeriod,
  RecnclnKeyGroup.RevenueAccountingContract AS RevenueAccountingContract,
  RecnclnKeyGroup.RecnclnKeyGroupId AS RelatedChgTypeItemKeyGroupId
INNER JOIN I_RevenueAccountingContract AS Contract ON /* join condition not captured in parsed metadata */
;