CTE_CDS_FIN_LATEST_COM_LOG_IO
Latest Communication Log Entry for Internal Order
CTE_CDS_FIN_LATEST_COM_LOG_IO is a CDS View in S/4HANA. Latest Communication Log Entry for Internal Order. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| CTE_CDS_FIN_MON_IO | view | inner | CDS View for Monotoring Internal Order export to Concur |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'CTE_COM_LOG_IO'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Latest Communication Log Entry for Internal Order'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
define view CTE_CDS_FIN_LATEST_COM_LOG_IO
with parameters
p_system_key : cte_system_key_number,
p_start_timestmp : timestampl,
p_end_timestmp : timestampl
as select from cte_d_com_log_io
{
key objid,
max(timestamp) as timestamp
}
where
system_key = $parameters.p_system_key
and otype = 'IO'
and timestamp >= $parameters.p_start_timestmp
and timestamp <= $parameters.p_end_timestmp
group by
objid