E_ServiceDocumentItem

DDL: E_SERVICEDOCUMENTITEM SQL: ESERVICEDOCITM Type: view EXTENSION Package: CRMS4_REPORT

Service Document Item Extension

E_ServiceDocumentItem is a Extension CDS View that provides data about "Service Document Item Extension" in SAP S/4HANA. It reads from 1 data source (crms4d_serv_i) and exposes 3 fields with key fields ServiceCategory, ServiceOrderItem, ServiceLineExternalID. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
crms4d_serv_i Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ESERVICEDOCITM view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #EXTENSION view
EndUserText.label Service Document Item Extension view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceCategory crms4d_serv_i objtype_h Trans. Cat.
KEY ServiceOrderItem crms4d_serv_i object_id Transaction ID
KEY ServiceLineExternalID crms4d_serv_i number_int Item Number in Doc.

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 E_ServiceDocumentItem.
-- 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: ESERVICEDOCITM

CREATE VIEW E_ServiceDocumentItem AS
SELECT
  Persistence.objtype_h AS ServiceCategory,
  Persistence.object_id AS ServiceOrderItem,
  Persistence.number_int AS ServiceLineExternalID
FROM crms4d_serv_i AS Persistence
;