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).
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 |
@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
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MASTERDATAIMPORT_2",
"I_MDCHANGEPROCESSSOURCE"
],
"ASSOCIATED":
[],
"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