C_AllocatedRevenue

DDL: C_ALLOCATEDREVENUE Type: view_entity CONSUMPTION Package: FINS_REV_REC_ALOC

Display Allocated Revenue Amount

C_AllocatedRevenue is a Consumption CDS View that provides data about "Display Allocated Revenue Amount" in SAP S/4HANA. It reads from 1 data source (P_AllocatedRevenue) and exposes 18 fields with key fields SalesOrder, SalesOrderItem, ProviderContract, ProviderContractItem. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3039). Part of development package FINS_REV_REC_ALOC.

Data Sources (1)

SourceAliasJoin Type
P_AllocatedRevenue P_AllocatedRevenue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ResultAnalysisVersionText _ResultAnalysisVersionText $projection.ResultAnalysisInternalID = _ResultAnalysisVersionText.ResultAnalysisInternalID

Annotations (8)

NameValueLevelField
Search.searchable true view
ObjectModel.compositionRoot true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Display Allocated Revenue Amount view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3039 ASQL_F3039 C2 NOT_RELEASED

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder SalesOrder SD Document
KEY SalesOrderItem SalesOrderItem Sales Order Item
KEY ProviderContract ProviderContract Contract
KEY ProviderContractItem ProviderContractItem Contract Item
CAProviderContractItemText CAProviderContractItemText
SalesOrganization SalesOrganization Sales Organization
Project Project WBS Element
ProjectDescription ProjectDescription Project Name
WBSElement WBSElement WBS Internal ID
WBSElementDescription WBSElementDescription Description
ResultAnalysisInternalID ResultAnalysisInternalID Revenue Recognition Key
StandAloneSellingPrice StandAloneSellingPrice Standalone Selling Price
TransactionPriceInSalesDocCrcy TransactionPriceInSalesDocCrcy
BilledRevenueInSalesDocCrcy BilledRevenueInSalesDocCrcy Billed Revenue at Completion
AllocatedRevnInSalesDocCrcy AllocatedRevnInSalesDocCrcy
Currency Currency Valuation Crcy
AuthorizationGroup AuthorizationGroup AuthorizGroup
_ResultAnalysisVersionText _ResultAnalysisVersionText

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_AllocatedRevenue.
-- 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_AllocatedRevenue AS
SELECT
  SalesOrder,
  SalesOrderItem,
  ProviderContract,
  ProviderContractItem,
  CAProviderContractItemText,
  SalesOrganization,
  Project,
  ProjectDescription,
  WBSElement,
  WBSElementDescription,
  ResultAnalysisInternalID,
  StandAloneSellingPrice,
  TransactionPriceInSalesDocCrcy,
  BilledRevenueInSalesDocCrcy,
  AllocatedRevnInSalesDocCrcy,
  Currency,
  AuthorizationGroup
FROM P_AllocatedRevenue
LEFT OUTER JOIN I_ResultAnalysisVersionText AS _ResultAnalysisVersionText ON ResultAnalysisInternalID = _ResultAnalysisVersionText.ResultAnalysisInternalID  -- association [0..*]
;