ATOV_CL_EXP_MAX
Collection Version max Exported At
ATOV_CL_EXP_MAX is a CDS View that provides data about "Collection Version max Exported At" in SAP S/4HANA. It reads from 1 data source (ato_changelists) and exposes 1 field.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ato_changelists | ChangeList | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_CL_EMAX | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Collection Version max Exported At | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| exported_at |
@AbapCatalog.sqlViewName: 'ATO_V_CL_EMAX'
@ClientHandling:{ type: #CLIENT_INDEPENDENT }
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Collection Version max Exported At'
define view ATOV_CL_EXP_MAX as select from ato_changelists as ChangeList
{
ChangeList.collection_id,
ChangeList.collection_version,
max(ChangeList.exported_at) as exported_at
} group by collection_id, collection_version
/*+[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