ATOV_ST_CURRENT_COL_VERSIONS
Current collection versions
ATOV_ST_CURRENT_COL_VERSIONS is a CDS View that provides data about "Current collection versions" in SAP S/4HANA. It reads from 2 data sources (ato_changelists, ATOV_ST_RELEVANT_ITEMS). Part of development package S_ATO_SYSTEM_TRANSFER.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ato_changelists | changel | inner |
| ATOV_ST_RELEVANT_ITEMS | current_cl | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_ST_COLV | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Current collection versions | view |
@AbapCatalog.sqlViewName: 'ATO_V_ST_COLV'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Current collection versions'
define view ATOV_ST_CURRENT_COL_VERSIONS
as select from ATOV_ST_RELEVANT_ITEMS as current_cl
inner join ato_changelists as changel on changel.changelist_id = current_cl.changelist_id
{
key changel.collection_id as collection_id,
max(changel.collection_version) as collection_version
}
group by
changel.collection_id
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