E_ServiceDocument
Service Document Extension
E_ServiceDocument is a Extension CDS View that provides data about "Service Document Extension" in SAP S/4HANA. It reads from 1 data source (crms4d_serv_h) and exposes 2 fields with key fields ServiceCategory, ServiceOrder.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crms4d_serv_h | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ESERVICEDOCUMENT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #EXTENSION | view | |
| EndUserText.label | Service Document Extension | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceCategory | crms4d_serv_h | objtype_h | |
| KEY | ServiceOrder | crms4d_serv_h | object_id |
@AbapCatalog.sqlViewName: 'ESERVICEDOCUMENT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@VDM.viewType: #EXTENSION
@EndUserText.label: 'Service Document Extension'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XL, dataClass: #MIXED}
define view E_ServiceDocument
as select from crms4d_serv_h as Persistence
{
key Persistence.objtype_h as ServiceCategory,
key Persistence.object_id as ServiceOrder
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMS4D_SERV_H"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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