I_CAReservationObject

DDL: I_CARESERVATIONOBJECT SQL: ICARECRESOB Type: view BASIC

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)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CAReservationObjectText _CAReservationObjectText $projection.CAReservationObject = _CAReservationObjectText.CAReservationObject

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY CAReservationObject
_CAReservationObjectText _CAReservationObjectText

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CAReservationObject.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICARECRESOB

CREATE VIEW I_CAReservationObject AS
SELECT
  cast ( cast (substring( dd07l.domvalue_l,1,3 ) as abap.char( 3 ) ) as resob_kk) AS CAReservationObject
FROM dd07l
LEFT OUTER JOIN I_CAReservationObjectText AS _CAReservationObjectText ON CAReservationObject = _CAReservationObjectText.CAReservationObject  -- association [1..*]
;