DHCDC_RT_OBJSTORAGESTATISTICS

CDS View

Runtime Obj Storage Statistic and Status

DHCDC_RT_OBJSTORAGESTATISTICS is a CDS View in S/4HANA. Runtime Obj Storage Statistic and Status. It contains 5 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
dhcdc_rt_accessplanportion view_entity inner Portion Information per Access Plan
DHCDC_RT_PortionInformation view_entity left_outer Portion Information

Fields (5)

KeyField CDS FieldsUsed in Views
KEY storage_id storage_id 1
status status 1
status_timestamp status_timestamp 1
total_bytes total_bytes 1
total_records total_records 1
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Runtime Obj Storage Statistic and Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view entity DHCDC_RT_ObjStorageStatistics
  as select from dhcdcrtportnstat
{
  key  storage_id,
  key  div ( cast(storage_id as abap.int8), 1000000 ) as storage_ptr,
       total_records,
       total_bytes,
       status,
       status_timestamp,
       case when status = 'I' or status = 'F' then transfer_start
            else null
       end                                            as transfer_start,
       case when status = 'I' then utcl_current( )
            when status = 'F' then transfer_end
            else null
       end                                            as transfer_end
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DHCDCRTPORTNSTAT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/