Atov_Col_Cart_Count_Items
Number of Items in Collection Cart
Atov_Col_Cart_Count_Items is a CDS View that provides data about "Number of Items in Collection Cart" in SAP S/4HANA. It reads from 1 data source (ato_col_cart) and exposes 1 field.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ato_col_cart | ato_col_cart | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_CART_CNT | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Number of Items in Collection Cart | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| num_items |
@AbapCatalog.sqlViewName: 'ATO_V_CART_CNT'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Number of Items in Collection Cart'
define view Atov_Col_Cart_Count_Items as
select from ato_col_cart
{
key collection_id,
count(*) as num_items
}
group by
collection_id;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_COL_CART"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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