I_SrvcDocItmBslnPlannedRevenue

DDL: I_SRVCDOCITMBSLNPLANNEDREVENUE SQL: ISRVDOCITBSLPLRV Type: view COMPOSITE

Baseline Planned Revenue of Srv Txn Item

I_SrvcDocItmBslnPlannedRevenue is a Composite CDS View that provides data about "Baseline Planned Revenue of Srv Txn Item" in SAP S/4HANA. It reads from 3 data sources (I_CostElementOnControllingArea, I_FinancialPlanningEntryItem, I_Ledger) and exposes 4 fields with key fields ServiceDocumentType, ServiceDocument, ServiceDocumentItem.

Data Sources (3)

SourceAliasJoin Type
I_CostElementOnControllingArea I_CostElementOnControllingArea inner
I_FinancialPlanningEntryItem I_FinancialPlanningEntryItem from
I_Ledger I_Ledger inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISRVDOCITBSLPLRV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Baseline Planned Revenue of Srv Txn Item view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType Transaction Type
KEY ServiceDocument ServiceDocument Transaction ID
KEY ServiceDocumentItem ServiceDocumentItem Service Document
SrvcDocItmBslnPlndRevnAmount

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 I_SrvcDocItmBslnPlannedRevenue.
-- 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.
-- SQL view name: ISRVDOCITBSLPLRV

CREATE VIEW I_SrvcDocItmBslnPlannedRevenue AS
SELECT
  ServiceDocumentType,
  ServiceDocument,
  ServiceDocumentItem,
  - sum( AmountInTransactionCurrency ) AS SrvcDocItmBslnPlndRevnAmount
FROM I_FinancialPlanningEntryItem
INNER JOIN I_Ledger ON /* join condition not captured in parsed metadata */
INNER JOIN I_CostElementOnControllingArea ON /* join condition not captured in parsed metadata */
;