ATOV_CL_ITEM_EXP_CL_MAX
Last export of item with max Changelist
ATOV_CL_ITEM_EXP_CL_MAX is a CDS View that provides data about "Last export of item with max Changelist" in SAP S/4HANA. It reads from 1 data source (ATOV_CL_ITEM_EXP) and exposes 2 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ATOV_CL_ITEM_EXP | ITEM | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_CL_IECM | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Last export of item with max Changelist | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| item_type | ATOV_CL_ITEM_EXP | item_type | ||
| item_id | ATOV_CL_ITEM_EXP | item_id |
@AbapCatalog.sqlViewName: 'ATO_V_CL_IECM'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@EndUserText.label: 'Last export of item with max Changelist'
define view ATOV_CL_ITEM_EXP_CL_MAX as
select from ATOV_CL_ITEM_EXP as ITEM
{
ITEM.item_type,
ITEM.item_id,
max( ITEM.changelist_id ) as last_exported_changelist_id
}
group by
ITEM.item_type,
ITEM.item_id
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATOV_CL_ITEM_EXP"
],
"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