atov_cmn_deps_to_custom_dev
Deps to Custom Dev Objects
atov_cmn_deps_to_custom_dev is a CDS View that provides data about "Deps to Custom Dev Objects" in SAP S/4HANA. It reads from 4 data sources (ato_changelists, ato_changelists, ato_changel_depk, ato_changel_depd).
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| ato_changelists | changelist | inner |
| ato_changelists | changelist | inner |
| ato_changel_depk | dependencies | from |
| ato_changel_depd | dependencies | union |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATOV_CMN_CDDEP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Deps to Custom Dev Objects | view |
@AbapCatalog.sqlViewName: 'ATOV_CMN_CDDEP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Deps to Custom Dev Objects'
define view atov_cmn_deps_to_custom_dev
// Extensibility => Custom Dev
as select from ato_changel_depk as dependencies
inner join ato_changelists as changelist on dependencies.changelist_id = changelist.changelist_id
{
changelist.collection_id,
changelist.collection_version,
dependencies.depending_on_program_id,
dependencies.depending_on_object_type,
dependencies.depending_on_object_name
}
union
// BC/Custom Dev => Custom Dev
select from ato_changel_depd as dependencies
inner join ato_changelists as changelist on dependencies.changelist_id = changelist.changelist_id
{
changelist.collection_id,
changelist.collection_version,
dependencies.depending_on_program_id,
dependencies.depending_on_object_type,
dependencies.depending_on_object_name
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_CHANGELISTS",
"ATO_CHANGEL_DEPD",
"ATO_CHANGEL_DEPK"
],
"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