I_MatlDocumentReversals

DDL: I_MATLDOCUMENTREVERSALS SQL: IMATREVERSALS Type: view COMPOSITE

Reversed Material Document

I_MatlDocumentReversals is a Composite CDS View that provides data about "Reversed Material Document" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 3 fields with key fields ReversedMaterialDocumentYear, ReversedMaterialDocument, ReversedMaterialDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IMATREVERSALS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Reversed Material Document view
VDM.private false view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ReversedMaterialDocumentYear ReversedMaterialDocumentYear Reversed Doc Year
KEY ReversedMaterialDocument ReversedMaterialDocument Reversed Mat Doc
KEY ReversedMaterialDocumentItem ReversedMaterialDocumentItem Reversed Doc 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_MatlDocumentReversals.
-- 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: IMATREVERSALS

CREATE VIEW I_MatlDocumentReversals AS
SELECT
  ReversedMaterialDocumentYear,
  ReversedMaterialDocument,
  ReversedMaterialDocumentItem
FROM I_MaterialDocumentRecord
;