EITV_EXP_CL_EXP_MAX
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)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| 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