E_MaterialDocumentItem
Material Document Item Extension
E_MaterialDocumentItem is a Extension CDS View that provides data about "Material Document Item Extension" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 4 fields with key fields MaterialDocumentRecordType, MaterialDocument, MaterialDocumentYear, MaterialDocumentItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| matdoc | Persistence | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | EMATDOCITEMEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Material Document Item Extension | view | |
| VDM.viewType | #EXTENSION | view | |
| DataAging.noAgingRestriction | false | view | |
| ObjectModel.usageType.sizeCategory | L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #AUTOMATED | view |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'EMATDOCITEMEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#PRIVILEGED_ONLY
@EndUserText.label: 'Material Document Item Extension'
@VDM.viewType: #EXTENSION
@DataAging.noAgingRestriction: 'false'
@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #AUTOMATED
define view E_MaterialDocumentItem as
select from matdoc as Persistence
{
key Persistence.record_type as MaterialDocumentRecordType,
key Persistence.mblnr as MaterialDocument,
key Persistence.mjahr as MaterialDocumentYear,
key Persistence.zeile as MaterialDocumentItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MATDOC"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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