I_MDImportStatus

DDL: I_MDIMPORTSTATUS SQL: IMDC_IMP_STATUS Type: view BASIC

Status of Import

I_MDImportStatus is a Basic CDS View that provides data about "Status of Import" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07l) and exposes 2 fields with key field MasterDataImportStatus.

Data Sources (2)

SourceAliasJoin Type
dd07t _status_text left_outer
dd07l imp_stat from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMDC_IMP_STATUS view
EndUserText.label Status of Import view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey MasterDataImportStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MasterDataImportStatus dd07l domvalue_l Lower Value
MasterDataImportStatusText dd07t ddtext Short text

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_MDImportStatus.
-- 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: IMDC_IMP_STATUS

CREATE VIEW I_MDImportStatus AS
SELECT
  imp_stat.domvalue_l AS MasterDataImportStatus,
  _status_text.ddtext AS MasterDataImportStatusText
FROM dd07l AS imp_stat
LEFT OUTER JOIN dd07t AS _status_text ON /* join condition not captured in parsed metadata */
;