ATOV_COL_VER_EXP_COUNT_LOGS

DDL: ATOV_COL_VER_EXP_COUNT_LOGS SQL: ATO_V_CV_E_CL Type: view

Count export logs of collection version

ATOV_COL_VER_EXP_COUNT_LOGS is a CDS View that provides data about "Count export logs of collection version" in SAP S/4HANA. It reads from 1 data source (ATOV_COL_VER_COUNT_LOGS_BASE) and exposes 1 field.

Data Sources (1)

SourceAliasJoin Type
ATOV_COL_VER_COUNT_LOGS_BASE ATOV_COL_VER_COUNT_LOGS_BASE from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_CV_E_CL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Count export logs of collection version view

Fields (1)

KeyFieldSource TableSource FieldDescription
no_of_logs
@AbapCatalog.sqlViewName: 'ATO_V_CV_E_CL'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@EndUserText.label: 'Count export logs of collection version'

define view ATOV_COL_VER_EXP_COUNT_LOGS
  as select from ATOV_COL_VER_COUNT_LOGS_BASE
  
{
  key collection_id,
  key collection_version,
      count(*) as no_of_logs

}
group by
  collection_id,
  collection_version
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATOV_COL_VER_COUNT_LOGS_BASE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/