I_MDImportSourceSystemVH
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)
| Source | Alias | Join Type |
|---|---|---|
| I_MasterDataImport_2 | I_MasterDataImport_2 | from |
| I_MDChangeProcessSource | I_MDChangeProcessSource | union |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| 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
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