I_DDMaterialDocumentFieldName
Material Document Fields
I_DDMaterialDocumentFieldName is a Basic CDS View that provides data about "Material Document Fields" in SAP S/4HANA. It reads from 2 data sources (dd03l, dd04t) and exposes 2 fields with key field DDMaterialDocumentFieldName.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Document Fields | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
//@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Fields'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
define view entity I_DDMaterialDocumentFieldName
as select from dd03l as DD03L
inner join dd04t as DD04T on DD03L.rollname = DD04T.rollname //DataElement
and DD04T.ddlanguage = $session.system_language
{
key DD03L.fieldname as DDMaterialDocumentFieldName,
DD04T.ddtext as DDMaterialDocumentFieldDesc
}
where
dd03l.as4local = 'A'
and DD04T.as4local = 'A'
and DD03L.tabname = 'MATDOC'
and DD03L.fieldname = 'KUNNR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD03L",
"DD04T"
],
"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