P_SrvcPrdcssrSrvcContr

DDL: P_SRVCPRDCSSRSRVCCONTR SQL: PPRDCSSRCONTR Type: view COMPOSITE

P_SrvcPrdcssrSrvcContr is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentPredecessor) and exposes 6 fields with key fields ServiceDocumentRelationUUID, ServiceDocRltnSequenceNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentPredecessor I_ServiceDocumentPredecessor from

Associations (1)

CardinalityTargetAliasCondition
[0..1] P_SrvcPrdcssrSrvcContrCnt _RefSrvcContrCount $projection.ServiceDocumentUUID = _RefSrvcContrCount.ServiceDocumentUUID

Annotations (10)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PPRDCSSRCONTR view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentRelationUUID ServiceDocumentRelationUUID GUID link
KEY ServiceDocRltnSequenceNumber ServiceDocRltnSequenceNumber Seq Number
ServiceDocumentUUID ServiceDocumentUUID Object GUID
ServiceObjectType ServiceObjectType Object Type
ServiceContract _ServiceDoc ServiceDocument Transaction ID
NumberOfOccurrences _RefSrvcContrCount NumberOfOccurrences Number of Repetitions

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_SrvcPrdcssrSrvcContr.
-- 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: PPRDCSSRCONTR

CREATE VIEW P_SrvcPrdcssrSrvcContr AS
SELECT
  ServiceDocumentRelationUUID,
  ServiceDocRltnSequenceNumber,
  ServiceDocumentUUID,
  ServiceObjectType,
  _ServiceDoc.ServiceDocument AS ServiceContract,
  _RefSrvcContrCount.NumberOfOccurrences AS NumberOfOccurrences
FROM I_ServiceDocumentPredecessor
LEFT OUTER JOIN P_SrvcPrdcssrSrvcContrCnt AS _RefSrvcContrCount ON ServiceDocumentUUID = _RefSrvcContrCount.ServiceDocumentUUID  -- association [0..1]
;