I_MDImportStatus_2

DDL: I_MDIMPORTSTATUS_2 SQL: IMDC_IMP_STATUS2 Type: view BASIC

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)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MDImportStatusText _Text $projection.MasterDataImportStatus = _Text.MasterDataImportStatus

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/