EITV_EXP_CL_EXP_MAX

CDS View

Template max Exported At

EITV_EXP_CL_EXP_MAX is a CDS View in S/4HANA. Template max Exported At. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
EITV_EXP_CL_EXP_MAX_DETAILS view from Template max Exported At
@AbapCatalog.sqlViewName: 'EIT_V_EXP_CL_MAX'
@ClientHandling:{ type: #CLIENT_INDEPENDENT  }
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Template max Exported At'
define view EITV_EXP_CL_EXP_MAX as select from ato_changelists as ChangeList
  {
    ChangeList.collection_id    as template_id,
    max(ChangeList.exported_at) as exported_at  
} 
where status          = 'ED' // only successfull exported

  and changelist_type = 'T'  // TEMPLATEES

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