I_CAReservationObject
Reservation Object
I_CAReservationObject is a Basic CDS View that provides data about "Reservation Object" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CAReservationObject. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_CAReservationObjectText | _CAReservationObjectText | $projection.CAReservationObject = _CAReservationObjectText.CAReservationObject |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICARECRESOB | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | CAReservationObject | view | |
| EndUserText.label | Reservation Object | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CAReservationObject | |||
| _CAReservationObjectText | _CAReservationObjectText |
@AbapCatalog.sqlViewName: 'ICARECRESOB'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'CAReservationObject'
@EndUserText.label: 'Reservation Object'
define view I_CAReservationObject as select from dd07l
association [1..*] to I_CAReservationObjectText as _CAReservationObjectText on $projection.CAReservationObject = _CAReservationObjectText.CAReservationObject
{
@ObjectModel.text.association: '_CAReservationObjectText'
key cast ( cast (substring( dd07l.domvalue_l,1,3 ) as abap.char( 3 ) ) as resob_kk) as CAReservationObject,
_CAReservationObjectText
}
where
domname = 'RESOB_KK' and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CARESERVATIONOBJECTTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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