C_RAContractualPrcByCustOvw

DDL: C_RACONTRACTUALPRCBYCUSTOVW Type: view_entity CONSUMPTION Package: ODATA_FARR_OVERVIEWPAGE

RA Contractual Price By Customer Ovw

C_RAContractualPrcByCustOvw is a Consumption CDS View that provides data about "RA Contractual Price By Customer Ovw" in SAP S/4HANA. It reads from 1 data source (P_RAContractualPriceByCust) and exposes 6 fields. It is exposed through 1 OData service (ASQL_F4067). Part of development package ODATA_FARR_OVERVIEWPAGE.

Data Sources (1)

SourceAliasJoin Type
P_RAContractualPriceByCust P_RAContractualPriceByCust from

Parameters (3)

NameTypeDefault
P_DisplayCurrency vdm_v_display_currency
P_CompanyCode bukrs
P_AccountingPrinciple accounting_principle

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label RA Contractual Price By Customer Ovw view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4067 ASQL_F4067 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode Receiver Company Code
AccountingPrinciple AccountingPrinciple AP Ledger/CoCode
ContractualPrcInSlsDocCrcy ContractualPrcInSlsDocCrcy Contractual Price
SalesDocumentCurrency SalesDocumentCurrency Currency
DisplayCurrency
DummyMeasure 1

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 C_RAContractualPrcByCustOvw.
-- 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_DisplayCurrency : vdm_v_display_currency, P_CompanyCode : bukrs, P_AccountingPrinciple : accounting_principle

CREATE VIEW C_RAContractualPrcByCustOvw AS
SELECT
  CompanyCode,
  AccountingPrinciple,
  ContractualPrcInSlsDocCrcy,
  SalesDocumentCurrency,
  $parameters.P_DisplayCurrency AS DisplayCurrency,
  1 AS DummyMeasure
FROM P_RAContractualPriceByCust
;