ATOV_COL_VERSION_LATEST_EXPORT
Latest Exported Version of Collection
ATOV_COL_VERSION_LATEST_EXPORT is a CDS View that provides data about "Latest Exported Version of Collection" in SAP S/4HANA. It reads from 1 data source (ato_changelists).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ato_changelists | ato_changelists | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_LAT_EXP_V | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Latest Exported Version of Collection | view |
@AbapCatalog.sqlViewName: 'ATO_V_LAT_EXP_V'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Latest Exported Version of Collection'
define view ATOV_COL_VERSION_LATEST_EXPORT
as select from ato_changelists
{
key collection_id,
max( collection_version ) as latest_exported_version
}
where
status = #ATO_CHANGELIST_STATUS.'ED'
group by
collection_id
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_CHANGELISTS"
],
"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