Atov_Conti_Item_Key
Item Keys of the Continouse BOM
Atov_Conti_Item_Key is a CDS View that provides data about "Item Keys of the Continouse BOM" in SAP S/4HANA. It reads from 1 data source (ato_conti_bom) and exposes 2 fields with key fields item_type, item_id.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ato_conti_bom | conti_ItemKey | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_CO_KEY | view | |
| ClientDependent | false | view | |
| EndUserText.label | Item Keys of the Continouse BOM | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | item_type | ato_conti_bom | item_type | |
| KEY | item_id | ato_conti_bom | item_id |
@AbapCatalog.sqlViewName: 'ATO_V_CO_KEY'
@ClientDependent: false
@EndUserText.label: 'Item Keys of the Continouse BOM'
define view Atov_Conti_Item_Key as
select from ato_conti_bom as conti_ItemKey
{
key conti_ItemKey.item_type as item_type,
key conti_ItemKey.item_id as item_id,
max(conti_ItemKey.updated_at) as last_updated_at
}
group by
item_type,
item_id
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_CONTI_BOM"
],
"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