P_DeferredRevenueSrvcDocAmt

DDL: P_DEFERREDREVENUESRVCDOCAMT SQL: PSVDISSDEFERRREV Type: view CONSUMPTION

Deferred Revenue service document amount

P_DeferredRevenueSrvcDocAmt is a Consumption CDS View that provides data about "Deferred Revenue service document amount" in SAP S/4HANA. It reads from 1 data source (I_JournalEntryItem) and exposes 4 fields with key fields ServiceDocument, ServiceDocumentItem, ServiceDocumentType.

Data Sources (1)

SourceAliasJoin Type
I_JournalEntryItem I_JournalEntryItem from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSVDISSDEFERRREV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Deferred Revenue service document amount view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (4)

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

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_DeferredRevenueSrvcDocAmt.
-- 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: PSVDISSDEFERRREV

CREATE VIEW P_DeferredRevenueSrvcDocAmt AS
SELECT
  ServiceDocument,
  ServiceDocumentItem,
  ServiceDocumentType,
  sum(AmountInCompanyCodeCurrency) AS DeferredRevenueAmtInCCCrcy
FROM I_JournalEntryItem
;