Atov_Item_Min_Timestamp

DDL: ATOV_ITEM_MIN_TIMESTAMP SQL: ATO_V_I_MIN_TS Type: view

Item with minimal timestamp

Atov_Item_Min_Timestamp is a CDS View that provides data about "Item with minimal timestamp" in SAP S/4HANA. It reads from 1 data source (ato_items) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
ato_items item from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_I_MIN_TS view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Item with minimal timestamp view

Fields (2)

KeyFieldSource TableSource FieldDescription
item_type ato_items item_type
item_id ato_items item_id
@AbapCatalog.sqlViewName: 'ATO_V_I_MIN_TS'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Item with minimal timestamp'
define view Atov_Item_Min_Timestamp as select from ato_items as item {

   item.item_type,
   item.item_id,
   min(item.timestamp) as min_timestamp  
}

group by item.item_type, item.item_id
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_ITEMS"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/