I_ResvnMatlDocumentDraftState

DDL: I_RESVNMATLDOCUMENTDRAFTSTATE SQL: IRESMATLDOCSTATE Type: view COMPOSITE Package: MM_IM_RAP_RES

Reservatio Material Document State

I_ResvnMatlDocumentDraftState is a Composite CDS View that provides data about "Reservatio Material Document State" in SAP S/4HANA. It reads from 2 data sources (I_DraftAdministrativeData, R_MaterialDocumentItemDraft) and exposes 2 fields with key fields Reservation, ReservationItem. Part of development package MM_IM_RAP_RES.

Data Sources (2)

SourceAliasJoin Type
I_DraftAdministrativeData _draftadmindata inner
R_MaterialDocumentItemDraft _MaterialDocumentItemDraft from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IRESMATLDOCSTATE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Reservation R_MaterialDocumentItemDraft Reservation Reservation
KEY ReservationItem R_MaterialDocumentItemDraft ReservationItem Reservation Item

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_ResvnMatlDocumentDraftState.
-- 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: IRESMATLDOCSTATE

CREATE VIEW I_ResvnMatlDocumentDraftState AS
SELECT
  _MaterialDocumentItemDraft.Reservation AS Reservation,
  _MaterialDocumentItemDraft.ReservationItem AS ReservationItem
FROM R_MaterialDocumentItemDraft AS _MaterialDocumentItemDraft
INNER JOIN I_DraftAdministrativeData AS _draftadmindata ON /* join condition not captured in parsed metadata */
;