P_LatestMasterDataImport
Private View: Latest Master Data Import
P_LatestMasterDataImport is a Basic CDS View that provides data about "Private View: Latest Master Data Import" in SAP S/4HANA. It reads from 1 data source (I_MasterDataImport_2) and exposes 3 fields with key fields MasterDataImportSourceSystem, MasterDataImportSourceFilter.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MasterDataImport_2 | I_MasterDataImport_2 | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PLTSTMDIMP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Private View: Latest Master Data Import | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataImportSourceSystem | MasterDataImportSourceSystem | ||
| KEY | MasterDataImportSourceFilter | MasterDataImportSourceFilter | ||
| LatestMDImportCreationDateTime |
@AbapCatalog.sqlViewName: 'PLTSTMDIMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Private View: Latest Master Data Import'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XXL
@VDM.private:true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_LatestMasterDataImport as select from I_MasterDataImport_2 {
key MasterDataImportSourceSystem,
key MasterDataImportSourceFilter,
max( MDImportCreationDateTime ) as LatestMDImportCreationDateTime
}
group by
MasterDataImportSourceSystem,
MasterDataImportSourceFilter
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