I_MDImportStatus_2
Status of Import
I_MDImportStatus_2 is a Basic CDS View that provides data about "Status of Import" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MasterDataImportStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MDImportStatusText | _Text | $projection.MasterDataImportStatus = _Text.MasterDataImportStatus |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDC_IMP_STATUS2 | view | |
| EndUserText.label | Status of Import | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | MasterDataImportStatus | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| UI.textArrangement | #TEXT_ONLY | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataImportStatus | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IMDC_IMP_STATUS2'
@EndUserText.label: 'Status of Import'
@VDM.viewType: #BASIC
@ObjectModel: {
resultSet.sizeCategory: #XS,
usageType.dataClass: #TRANSACTIONAL,
usageType.serviceQuality: #C,
usageType.sizeCategory: #M,
representativeKey: 'MasterDataImportStatus' }
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true
@UI.textArrangement: #TEXT_ONLY
define view I_MDImportStatus_2
as select from dd07l
association [0..*] to I_MDImportStatusText as _Text on $projection.MasterDataImportStatus = _Text.MasterDataImportStatus
{
@ObjectModel.text.association: '_Text'
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as mdc_load_status ) as MasterDataImportStatus,
@UI.hidden: true
cast ( case
when domvalue_l = 'R' or domvalue_l = 'C' then 3
when domvalue_l = 'O' or domvalue_l = 'K' then 2
when domvalue_l = 'F' or domvalue_l = 'D' then 1
else 0
end as mdc_criticality ) as MDImportStatusCriticality,
_Text
}
where
domname = 'MDC_LOAD_STATUS'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MDIMPORTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA