I_DRAFTLIFECYCLELOG

CDS View

Draft Lifecycle Log

I_DRAFTLIFECYCLELOG is a CDS View in S/4HANA. Draft Lifecycle Log. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_Draftlifecyclelog view from CONSUMPTION Draft Lifecycle Log

Fields (4)

KeyField CDS FieldsUsed in Views
KEY DraftEntityType DraftEntityType 1
KEY DraftUUID DraftUUID 1
KEY LogNumber LogNumber 1
ObjectKey ObjectKey 1
@AbapCatalog.sqlViewName: 'ISDRAFT_LOG'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Draft Lifecycle Log'

@Search.searchable: true

@ObjectModel.usageType.serviceQuality: 'C'
@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.dataClass: 'TRANSACTIONAL'

define view I_Draftlifecyclelog as select from sdraft_admin_log as Document {

 @Search: {
                  defaultSearchElement: true,
                  fuzzinessThreshold: 0.8,
                  ranking: #HIGH
               }
  key Document.draft_entity as DraftEntityType,
               
  key Document.draft_key as DraftUUID,
  
  Document.lognumber as LogNumber,
  Document.object_key as ObjectKey
}       
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"SDRAFT_ADMIN_LOG"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/