P_RAPriceByPerfOblgnName

DDL: P_RAPRICEBYPERFOBLGNNAME Type: view_entity COMPOSITE

P_RAPriceByPerfOblgnName is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_RAPerformanceObligation) and exposes 5 fields with key fields CompanyCode, AccountingPrinciple, PerformanceObligationClass, SalesDocumentCurrency.

Data Sources (1)

SourceAliasJoin Type
I_RAPerformanceObligation I_RAPerformanceObligation from

Parameters (2)

NameTypeDefault
P_CompanyCode bukrs
P_AccountingPrinciple accounting_principle

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingPrinciple AccountingPrinciple AP Ledger/CoCode
KEY PerformanceObligationClass PerformanceObligationClass Performance Obligation Name
KEY SalesDocumentCurrency SalesDocumentCurrency Currency
ContractualPrcInSlsDocCrcy

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_RAPriceByPerfOblgnName.
-- 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.
-- Parameters: P_CompanyCode : bukrs, P_AccountingPrinciple : accounting_principle

CREATE VIEW P_RAPriceByPerfOblgnName AS
SELECT
  CompanyCode,
  AccountingPrinciple,
  PerformanceObligationClass,
  SalesDocumentCurrency,
  sum(ContractualPrcInSlsDocCrcy) AS ContractualPrcInSlsDocCrcy
FROM I_RAPerformanceObligation
;