I_MDImportSourceSystemVH

DDL: I_MDIMPORTSOURCESYSTEMVH Type: view_entity COMPOSITE Package: MDC_LOAD

Master data import source systems

I_MDImportSourceSystemVH is a Composite CDS View that provides data about "Master data import source systems" in SAP S/4HANA. It reads from 2 data sources (I_MasterDataImport_2, I_MDChangeProcessSource). It is exposed through 1 OData service (C_MASTERDATAIMPORTTP_2SD). Part of development package MDC_LOAD.

Data Sources (2)

SourceAliasJoin Type
I_MasterDataImport_2 I_MasterDataImport_2 from
I_MDChangeProcessSource I_MDChangeProcessSource union

Annotations (11)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey MasterDataImportSourceSystem view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Master data import source systems view
Search.searchable true view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
C_MASTERDATAIMPORTTP_2SD C_MASTERDATAIMPORTTP_2_V4 V4 C1 NOT_RELEASED
@VDM.viewType: #COMPOSITE
@ObjectModel: {
    dataCategory: #VALUE_HELP,
    usageType.dataClass: #TRANSACTIONAL,
    usageType.serviceQuality: #C,
    usageType.sizeCategory: #L,
    representativeKey: 'MasterDataImportSourceSystem' }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Master data import source systems'
@Search.searchable: true
@Consumption.ranked: true 
define view entity I_MDImportSourceSystemVH
  as select from I_MasterDataImport_2
{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key MasterDataImportSourceSystem
}
where MasterDataImportSourceSystem <> ''
group by
  MasterDataImportSourceSystem

union select from I_MDChangeProcessSource
{
  key MDChgProcessSrceSystem as MasterDataImportSourceSystem
}
where MDChgProcessSrceSystem <> ''
group by
  MDChgProcessSrceSystem