I_ReservationCreationCode

DDL: I_RESERVATIONCREATIONCODE Type: view_entity BASIC Package: MM_IM_RAP_RES

Reservation Creation Code

I_ReservationCreationCode is a Basic CDS View that provides data about "Reservation Creation Code" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ReservationCreationCode. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F5601, ASQL_F7279). Part of development package MM_IM_RAP_RES.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ResvnCreationCodeText _ResvnCreationCodeText $projection.ReservationCreationCode = _ResvnCreationCodeText.ReservationCreationCode

Annotations (12)

NameValueLevelField
EndUserText.label Reservation Creation Code view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ReservationCreationCode view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F5601 ASQL_F5601 C2 NOT_RELEASED
ASQL_F7279 ASQL_F7279 C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReservationCreationCode
_ResvnCreationCodeText _ResvnCreationCodeText

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_ReservationCreationCode.
-- 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.

CREATE VIEW I_ReservationCreationCode AS
SELECT
  cast(SUBSTRING(dd07l.domvalue_l, 1, 4) as imrs_creation_code preserving type) AS ReservationCreationCode
FROM dd07l
LEFT OUTER JOIN I_ResvnCreationCodeText AS _ResvnCreationCodeText ON ReservationCreationCode = _ResvnCreationCodeText.ReservationCreationCode  -- association [0..*]
;