R_SrvcConfItmFUPTimeSheetTP

DDL: R_SRVCCONFITMFUPTIMESHEETTP Type: view_entity TRANSACTIONAL

Item Follow-Up Time Sheet - TP

R_SrvcConfItmFUPTimeSheetTP is a Transactional CDS View that provides data about "Item Follow-Up Time Sheet - TP" in SAP S/4HANA. It reads from 2 data sources (I_ServiceDocumentItemEnhcd, I_ServiceDocumentSuccessor) and exposes 5 fields with key fields ServiceConfirmation, ServiceConfirmationItem, TimeSheetRecord.

Data Sources (2)

SourceAliasJoin Type
I_ServiceDocumentItemEnhcd _ServiceDocumentItem from
I_ServiceDocumentSuccessor _ServiceDocumentSuccessor inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Item Follow-Up Time Sheet - TP view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmation I_ServiceDocumentItemEnhcd ServiceDocument Transaction ID
KEY ServiceConfirmationItem I_ServiceDocumentItemEnhcd ServiceDocumentItem Service Document
KEY TimeSheetRecord
_ServiceConfirmationItem _ServiceConfirmationItem
_ServiceConfirmationTP _ServiceConfirmationTP

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_SrvcConfItmFUPTimeSheetTP.
-- 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_SrvcConfItmFUPTimeSheetTP AS
SELECT
  _ServiceDocumentItem.ServiceDocument AS ServiceConfirmation,
  _ServiceDocumentItem.ServiceDocumentItem AS ServiceConfirmationItem,
  cast( _ServiceDocumentSuccessor.ServiceDocSuccessor as catscounte) AS TimeSheetRecord
FROM I_ServiceDocumentItemEnhcd AS _ServiceDocumentItem
INNER JOIN I_ServiceDocumentSuccessor AS _ServiceDocumentSuccessor ON /* join condition not captured in parsed metadata */
;