C_RAAllocatedAmtDistrDetail

DDL: C_RAALLOCATEDAMTDISTRDETAIL Type: view_entity CONSUMPTION Package: ODATA_FARR_ALLOC_AMT_EXPLAIN

RA Allocated Amount Distribution Detail

C_RAAllocatedAmtDistrDetail is a Consumption CDS View that provides data about "RA Allocated Amount Distribution Detail" in SAP S/4HANA. It reads from 1 data source (I_RAAllocatedAmtDistrDetail) and exposes 11 fields with key fields PerformanceObligation, RevenueAccountingContract, RevnAcctgContrChangeEffctvDate. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F4424). Part of development package ODATA_FARR_ALLOC_AMT_EXPLAIN.

Data Sources (1)

SourceAliasJoin Type
I_RAAllocatedAmtDistrDetail I_RAAllocatedAmtDistrDetail from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_RAPerfOblgnDistinctTypeText _DistinctTypeText $projection.RAPerfOblgnDistinctType = _DistinctTypeText.RAPerfOblgnDistinctType

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label RA Allocated Amount Distribution Detail view
Metadata.allowExtensions true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4424 ASQL_F4424 C2 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PerformanceObligation PerformanceObligation Performance Obligation
KEY RevenueAccountingContract RevenueAccountingContract Revenue Contract
KEY RevnAcctgContrChangeEffctvDate RevnAcctgContrChangeEffctvDate
CompanyCode CompanyCode Receiver Company Code
RAPerfOblgnDistinctType RAPerfOblgnDistinctType Composition
RAHigherLevelPerfOblgn RAHigherLevelPerfOblgn Higher-Level POB
PerformanceObligationClass PerformanceObligationClass Performance Obligation Name
ContractualPrcInSlsDocCrcy ContractualPrcInSlsDocCrcy Contractual Price
AllocatedPriceInSalesDocCrcy AllocatedPriceInSalesDocCrcy Allocated Amount
SalesDocumentCurrency SalesDocumentCurrency Currency
_DistinctTypeText _DistinctTypeText

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_RAAllocatedAmtDistrDetail.
-- 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 C_RAAllocatedAmtDistrDetail AS
SELECT
  PerformanceObligation,
  RevenueAccountingContract,
  RevnAcctgContrChangeEffctvDate,
  CompanyCode,
  RAPerfOblgnDistinctType,
  RAHigherLevelPerfOblgn,
  PerformanceObligationClass,
  ContractualPrcInSlsDocCrcy,
  AllocatedPriceInSalesDocCrcy,
  SalesDocumentCurrency
FROM I_RAAllocatedAmtDistrDetail
LEFT OUTER JOIN I_RAPerfOblgnDistinctTypeText AS _DistinctTypeText ON RAPerfOblgnDistinctType = _DistinctTypeText.RAPerfOblgnDistinctType  -- association [1..*]
;