I_LatestMasterDataImport

DDL: I_LATESTMASTERDATAIMPORT SQL: ILTSTMDIMP Type: view BASIC

Latest Master Data Import

I_LatestMasterDataImport is a Basic CDS View that provides data about "Latest Master Data Import" in SAP S/4HANA. It reads from 2 data sources (P_LatestMasterDataImport, I_MasterDataImport_2) and exposes 7 fields with key fields MasterDataImportSourceSystem, MasterDataImportSourceFilter. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
P_LatestMasterDataImport _LatestMasterDataImport inner
I_MasterDataImport_2 _MasterDataImport from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MDImportStatus_2 _ImportStatus $projection.MasterDataImportStatus = _ImportStatus.MasterDataImportStatus
[0..1] I_UserContactCard _CloudUserContactCard $projection.MasterDataImportCreator = _CloudUserContactCard.ContactCardID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ILTSTMDIMP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Latest Master Data Import view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MasterDataImportSourceSystem I_MasterDataImport_2 MasterDataImportSourceSystem
KEY MasterDataImportSourceFilter I_MasterDataImport_2 MasterDataImportSourceFilter
LatestMDImportCreationDateTime I_MasterDataImport_2 MDImportCreationDateTime
MasterDataImportCreator I_MasterDataImport_2 MasterDataImportCreator
MasterDataImportStatus I_MasterDataImport_2 MasterDataImportStatus
_ImportStatus _ImportStatus
_CloudUserContactCard _CloudUserContactCard
@AbapCatalog.sqlViewName: 'ILTSTMDIMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Latest Master Data Import'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #XXL
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_LatestMasterDataImport
  as select from I_MasterDataImport_2     as _MasterDataImport
    inner join   P_LatestMasterDataImport as _LatestMasterDataImport on  _MasterDataImport.MasterDataImportSourceSystem = _LatestMasterDataImport.MasterDataImportSourceSystem
                                                                     and _MasterDataImport.MasterDataImportSourceFilter = _LatestMasterDataImport.MasterDataImportSourceFilter
                                                                     and _MasterDataImport.MDImportCreationDateTime     = _LatestMasterDataImport.LatestMDImportCreationDateTime
  association [0..1] to I_MDImportStatus_2 as _ImportStatus on $projection.MasterDataImportStatus = _ImportStatus.MasterDataImportStatus
  association [0..1] to I_UserContactCard  as _CloudUserContactCard on $projection.MasterDataImportCreator = _CloudUserContactCard.ContactCardID
  
{
  key _MasterDataImport.MasterDataImportSourceSystem,
  key _MasterDataImport.MasterDataImportSourceFilter,
      _MasterDataImport.MDImportCreationDateTime as LatestMDImportCreationDateTime,
      _MasterDataImport.MasterDataImportCreator,
      _MasterDataImport.MasterDataImportStatus,
      _ImportStatus,
      _CloudUserContactCard

}