ATOV_COL_VER_EXP_ITEM_COUNTER
# Items in exported Collection Versions
ATOV_COL_VER_EXP_ITEM_COUNTER is a CDS View that provides data about "# Items in exported Collection Versions" in SAP S/4HANA.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_COLVE_ITMC | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | # Items in exported Collection Versions | view |
@AbapCatalog.sqlViewName: 'ATO_V_COLVE_ITMC'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: '# Items in exported Collection Versions'
define view ATOV_COL_VER_EXP_ITEM_COUNTER
as
select distinct from ATOV_CL_ITEM_EXP as Collection_Version_Item // due to full and delta exports
// there is no need to get the max entry as both are exported at the same timestamp
{
key collection_id,
key collection_version,
count( distinct item_id ) as number_of_items
}
where Collection_Version_Item.status = 'ED'
group by collection_id,
collection_version
/*+[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