I_ReservationDocRecordType

DDL: I_RESERVATIONDOCRECORDTYPE Type: view_entity BASIC

Reservation Document Record Type

I_ReservationDocRecordType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Supply Chain

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.

SAP Help Documentation

CategoryCDS Views for Reservation
Data CategoryDimension
Purpose
This CDS view helps you to indicate, in the case of a discontinued material in a reservation from a production order, whether the discontinued material or the follow-up material should be consumed. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentMM-IM-VDM-RSV
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageSupply Chain for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (13)

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

KeyFieldSource TableSource FieldDescription
KEY RecordType Reservation Record Type
GoodsMovementType _GoodsMovementType GoodsMovementType Movement Type (Inventory Management)

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_ReservationDocRecordType.
-- 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_ReservationDocRecordType AS
SELECT
  cast( dd07l.domvalue_l as imrs_recordtype ) AS RecordType,
  _GoodsMovementType.GoodsMovementType AS GoodsMovementType
FROM dd07l
;