CTE_CDS_FIN_LATEST_COM_LOG_MO

CDS View

Latest Communication Log Entry for MO

CTE_CDS_FIN_LATEST_COM_LOG_MO is a CDS View in S/4HANA. Latest Communication Log Entry for MO. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
CTE_CDS_FIN_MON_MO view inner CDS View for Monotoring MO exp to Concur
@ClientHandling.algorithm: #SESSION_VARIABLE

@AbapCatalog.sqlViewName: 'CTE_COM_LOG_MO'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Latest Communication Log Entry for MO'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
define view CTE_CDS_FIN_LATEST_COM_LOG_MO
  with parameters
    p_system_key     : cte_system_key_number,
    p_start_timestmp : timestampl,
    p_end_timestmp   : timestampl
  as select from cte_d_com_log_mo
{
  key  objid,
       max(timestamp) as timestamp
}
where
      system_key = $parameters.p_system_key
  and otype      = 'MO'
  and timestamp  >= $parameters.p_start_timestmp
  and timestamp  <= $parameters.p_end_timestmp
group by
  objid
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CTE_D_COM_LOG_MO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/