I_ServiceDocumentItemVH

DDL: I_SERVICEDOCUMENTITEMVH SQL: ISVCDOCITEMVH Type: view COMPOSITE

Value help for Sevice Document Item

I_ServiceDocumentItemVH is a Composite CDS View that provides data about "Value help for Sevice Document Item" in SAP S/4HANA. It reads from 1 data source (I_AcctgServiceDocumentItem) and exposes 3 fields with key fields ServiceDocumentItem, ServiceDocumentType, ServiceDocument.

Data Sources (1)

SourceAliasJoin Type
I_AcctgServiceDocumentItem I_AcctgServiceDocumentItem from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISVCDOCITEMVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ServiceDocumentItem view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #COMPOSITE view
EndUserText.label Value help for Sevice Document Item view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentItem ServiceDocumentItem Service Document
KEY ServiceDocumentType ServiceDocumentType Transaction Type
KEY ServiceDocument ServiceDocument Transaction ID

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 I_ServiceDocumentItemVH.
-- 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: ISVCDOCITEMVH

CREATE VIEW I_ServiceDocumentItemVH AS
SELECT
  ServiceDocumentItem,
  ServiceDocumentType,
  ServiceDocument
FROM I_AcctgServiceDocumentItem
;