I_MaterialDocumentRecordType
Material Document Record Type
I_MaterialDocumentRecordType is a Basic CDS View (Dimension) that provides data about "Material Document Record Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field MaterialDocumentRecordType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaterialDocumentRecordTypeT | _Text | $projection.MaterialDocumentRecordType = _Text.MaterialDocumentRecordType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IMATDOCRECRDTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Document Record Type | view | |
| ObjectModel.representativeKey | MaterialDocumentRecordType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Search.searchable | true | view | |
| Analytics.dataCategory | #DIMENSION | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialDocumentRecordType | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@AbapCatalog: {
preserveKey: true,
sqlViewName: 'IMATDOCRECRDTYPE',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Record Type'
@ObjectModel: {
representativeKey: 'MaterialDocumentRecordType',
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
private: false,
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@Analytics: { dataCategory: #DIMENSION }
define view I_MaterialDocumentRecordType
as select from dd07l
association [0..*] to I_MaterialDocumentRecordTypeT as _Text on $projection.MaterialDocumentRecordType = _Text.MaterialDocumentRecordType
{
@ObjectModel.text.association: '_Text'
key cast ( cast ( substring( domvalue_l, 1, 30 ) as abap.char( 30 ) ) as nsdm_record_type ) as MaterialDocumentRecordType,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07l.domvalue_l as DomainValue,
_Text
} where domname = 'NSDM_RECORD_TYPE' and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORDTYPET"
],
"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