atov_cmn_import_dep_preimports
Dependencies to Preimports
atov_cmn_import_dep_preimports is a CDS View that provides data about "Dependencies to Preimports" in SAP S/4HANA. It reads from 2 data sources (atov_changelist_minus_ignored, ato_changel_dept) and exposes 2 fields. Part of development package S_ATO_COMMON_IMPORT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| atov_changelist_minus_ignored | changelist_of_preimport | inner |
| ato_changel_dept | dependencies | inner |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_CMNDEP_PRE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Dependencies to Preimports | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| version | changelist | collection_version | ||
| ato_client | ato_changel_dept | client |
@AbapCatalog.sqlViewName: 'ATO_V_CMNDEP_PRE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Dependencies to Preimports'
define view atov_cmn_import_dep_preimports
as select distinct from atov_changelist_minus_ignored as changelist
inner join ato_changel_dept as dependencies on changelist.transport = dependencies.request
inner join atov_changelist_minus_ignored as changelist_of_preimport on dependencies.changelist_id = changelist_of_preimport.changelist_id
and changelist_of_preimport.status = #ATO_CHANGELIST_STATUS.'PI'
{
changelist.collection_id as collection_id,
changelist.collection_version as version,
changelist_of_preimport.collection_id as depending_on_collection_id,
changelist_of_preimport.collection_version as depending_on_version,
dependencies.client as ato_client
}
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