I_MaterialDocumentRecordTypeT
Material Document Record Type Text
I_MaterialDocumentRecordTypeT is a Basic CDS View that provides data about "Material Document Record Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, MaterialDocumentRecordType. It has 2 associations to related views. Part of development package MM_IM_VDM_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_MaterialDocumentRecordType | _MaterialDocumentRecordType | $projection.MaterialDocumentRecordType = _MaterialDocumentRecordType.MaterialDocumentRecordType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Document Record Type Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IMATDOCRECRDTYT | view | |
| ObjectModel.representativeKey | MaterialDocumentRecordType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | MaterialDocumentRecordType | |||
| MaterialDocRecordTypeName | ||||
| _Language | _Language | |||
| _MaterialDocumentRecordType | _MaterialDocumentRecordType |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Record Type Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IMATDOCRECRDTYT'
@ObjectModel.representativeKey: 'MaterialDocumentRecordType'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@VDM: {
private: false,
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
define view entity I_MaterialDocumentRecordTypeT
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_MaterialDocumentRecordType as _MaterialDocumentRecordType on $projection.MaterialDocumentRecordType = _MaterialDocumentRecordType.MaterialDocumentRecordType
{
@Semantics.language
key cast( ddlanguage as spras ) as Language,
@ObjectModel.foreignKey.association: '_MaterialDocumentRecordType'
key cast ( cast ( substring( domvalue_l, 1, 30 ) as abap.char( 30 ) ) as nsdm_record_type ) as MaterialDocumentRecordType,
@Semantics.text
cast ( substring ( ddtext, 1, 60 ) as nsdm_record_type_name ) as MaterialDocRecordTypeName,
_Language,
_MaterialDocumentRecordType
} where domname = 'NSDM_RECORD_TYPE' and as4local = 'A'
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