R_SrvcConfItemDurationTP

DDL: R_SRVCCONFITEMDURATIONTP Type: view_entity TRANSACTIONAL Package: CRMS4_SERVICE_CONFIRMATION_RAP

Service Confirmation Item Duration - TP

R_SrvcConfItemDurationTP is a Transactional CDS View that provides data about "Service Confirmation Item Duration - TP" in SAP S/4HANA. It reads from 1 data source (P_SrvcDocItemDurationTP) and exposes 7 fields with key fields ServiceConfirmation, ServiceConfirmationItem, SrvcDocDurationType. It has 1 association to related views. Part of development package CRMS4_SERVICE_CONFIRMATION_RAP.

Data Sources (1)

SourceAliasJoin Type
P_SrvcDocItemDurationTP ServiceDuration from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_ServiceConfirmationTP _ServiceConfTP $projection.ServiceConfirmation = _ServiceConfTP.ServiceConfirmation

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Service Confirmation Item Duration - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmation P_SrvcDocItemDurationTP ServiceDocument Transaction ID
KEY ServiceConfirmationItem P_SrvcDocItemDurationTP ServiceDocumentItem Service Document
KEY SrvcDocDurationType P_SrvcDocItemDurationTP SrvcDocDurationType
SrvcDocDurationValue P_SrvcDocItemDurationTP SrvcDocDurationValue
SrvcDocDurationUnit P_SrvcDocItemDurationTP SrvcDocDurationUnit
_ServiceConfItemTP _ServiceConfItemTP
_ServiceConfTP _ServiceConfTP

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 R_SrvcConfItemDurationTP.
-- 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 R_SrvcConfItemDurationTP AS
SELECT
  ServiceDuration.ServiceDocument AS ServiceConfirmation,
  ServiceDuration.ServiceDocumentItem AS ServiceConfirmationItem,
  ServiceDuration.SrvcDocDurationType AS SrvcDocDurationType,
  ServiceDuration.SrvcDocDurationValue AS SrvcDocDurationValue,
  ServiceDuration.SrvcDocDurationUnit AS SrvcDocDurationUnit
FROM P_SrvcDocItemDurationTP AS ServiceDuration
LEFT OUTER JOIN R_ServiceConfirmationTP AS _ServiceConfTP ON ServiceConfirmation = _ServiceConfTP.ServiceConfirmation  -- association [1..1]
;