Mmim_MatDocFlowReceivingStatus

DDL: MMIM_MATDOCFLOWRECEIVINGSTATUS SQL: MMIMMDOCFLWSTARP Type: view

Status Receiving

Mmim_MatDocFlowReceivingStatus is a CDS View that provides data about "Status Receiving" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 4 fields with key fields MaterialDocument, MaterialDocumentYear, MaterialDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName MMIMMDOCFLWSTARP view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Status Receiving view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
DataAging.noAgingRestriction true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument Material Document Item
KEY MaterialDocumentYear MaterialDocumentYear Material Document Year
KEY MaterialDocumentItem MaterialDocumentItem Material Document Item
Status

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 Mmim_MatDocFlowReceivingStatus.
-- 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: MMIMMDOCFLWSTARP

CREATE VIEW Mmim_MatDocFlowReceivingStatus AS
SELECT
  cast(concat(MaterialDocument, cast( ( cast(MaterialDocumentItem as abap.int2) + 1 ) as char20 ) ) as char20 ) AS MaterialDocument,
  MaterialDocumentYear,
  MaterialDocumentItem,
  cast('01' as char4) AS Status
FROM I_MaterialDocumentRecord
;