I_ReservationDocRecordType
Reservation Document Record Type
I_ReservationDocRecordType is a Basic CDS View (Dimension) that provides data about "Reservation Document Record Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field RecordType. Part of development package MM_IM_VDM_RES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Reservation Document Record Type | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | RecordType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.technicalName | IRESVNDOCRECTYP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecordType | |||
| GoodsMovementType | _GoodsMovementType | GoodsMovementType |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Reservation Document Record Type'
@ObjectModel: {
usageType: {
sizeCategory: #L,
serviceQuality: #C,
dataClass:#TRANSACTIONAL
},
representativeKey: 'RecordType',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE]
}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@Analytics.dataCategory: #DIMENSION
@Analytics.technicalName: 'IRESVNDOCRECTYP'
@Metadata: {
ignorePropagatedAnnotations:true,
allowExtensions: true
}
define view entity I_ReservationDocRecordType
// Performance improvement: Selecting Domain values on DD07L instead of previously I_ReservationDocumentItem
as select from dd07l
left outer to one join I_GoodsMovementType as _GoodsMovementType
on dd07l.domvalue_l = _GoodsMovementType.GoodsMovementType
{
key cast( dd07l.domvalue_l as imrs_recordtype ) as RecordType,
//GoodsMovementType is dummy associated field to support Client Dependency
//otherwise the view incompatible for C1 which was previously selecting distinct on I_ReservationDocumentItem
@Consumption.hidden: true
_GoodsMovementType.GoodsMovementType
}
where
dd07l.domname = 'IMRS_RECORDTYPE'
and dd07l.as4local = 'A'
and dd07l.as4vers = '0000'
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