E_ServiceDocumentItem
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crms4d_serv_i | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceCategory | crms4d_serv_i | objtype_h | |
| KEY | ServiceOrderItem | crms4d_serv_i | object_id | |
| KEY | ServiceLineExternalID | crms4d_serv_i | number_int |
@AbapCatalog.sqlViewName: 'ESERVICEDOCITM'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@VDM.viewType: #EXTENSION
@EndUserText.label: 'Service Document Item Extension'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XL, dataClass: #MIXED}
define view E_ServiceDocumentItem
as select from crms4d_serv_i as Persistence
{
key Persistence.objtype_h as ServiceCategory,
key Persistence.object_id as ServiceOrderItem,
key Persistence.number_int as ServiceLineExternalID
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA