ATOV_CMN_GET_ALL_PENDINGS
Get all pending collections
ATOV_CMN_GET_ALL_PENDINGS is a CDS View that provides data about "Get all pending collections" in SAP S/4HANA. It reads from 2 data sources (ato_cols, ATOV_COL_VER_PENDING) and exposes 1 field with key field version.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ato_cols | collections | inner |
| ATOV_COL_VER_PENDING | pending | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_PEND_COL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Get all pending collections | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | version | ATOV_COL_VER_PENDING | version |
@AbapCatalog.sqlViewName: 'ATO_V_PEND_COL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Get all pending collections'
define view ATOV_CMN_GET_ALL_PENDINGS
as select from ATOV_COL_VER_PENDING as pending
inner join ato_cols as collections on collections.collection_id = pending.collection_id
{
key pending.collection_id,
key pending.version,
import_pending,
forward_pending,
case
when ts_seconds_between_as_curr > 2592000 // 30 days in seconds: 60 * 60 * 24 * 30
then 'X'
else ''
end as is_old_col_ver
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATOV_COL_VER_PENDING",
"ATO_COLS"
],
"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