P_ServiceConfItmRefSrvcContr

DDL: P_SERVICECONFITMREFSRVCCONTR Type: view_entity COMPOSITE

Reference Service Contract of Service Confirmation Item

P_ServiceConfItmRefSrvcContr is a Composite CDS View that provides data about "Reference Service Contract of Service Confirmation Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemPrdcssr_2) and exposes 4 fields with key field ServiceConfirmationItemUUID.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentItemPrdcssr_2 I_ServiceDocumentItemPrdcssr_2 from

Annotations (9)

NameValueLevelField
EndUserText.label Reference Service Contract of Service Confirmation Item view
VDM.private true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #NONE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmationItemUUID
ReferenceServiceContract _ServiceDocItm ServiceDocument Transaction ID
ReferenceServiceContractItem _ServiceDocItm ServiceDocumentItem Service Document
ServiceDocumentItemObjectType ServiceDocumentItemObjectType Object Type

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_ServiceConfItmRefSrvcContr.
-- 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 P_ServiceConfItmRefSrvcContr AS
SELECT
  hextobin(ServiceDocumentItemCharUUID) AS ServiceConfirmationItemUUID,
  _ServiceDocItm.ServiceDocument AS ReferenceServiceContract,
  _ServiceDocItm.ServiceDocumentItem AS ReferenceServiceContractItem,
  ServiceDocumentItemObjectType
FROM I_ServiceDocumentItemPrdcssr_2
;