R_BDTSEXECUTIONPLANHEADER

CDS View

Execution Plan Header

R_BDTSEXECUTIONPLANHEADER is a CDS View in S/4HANA. Execution Plan Header. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
A_BDTSExecutionPlan view_entity from CONSUMPTION BDTS Execution Plan
R_BDTSExecutionPlanTP view_entity from TRANSACTIONAL Execution Plan Root - TP

Fields (9)

KeyField CDS FieldsUsed in Views
KEY BDTSExecPlanID BDTSExecPlanID 1
KEY BDTSTransformationAreaID BDTSTransformationAreaID 1
BDTSExecPlanCreationDateTime BDTSExecPlanCreationDateTime 1
BDTSExecPlanEndDateTime BDTSExecPlanEndDateTime 1
BDTSExecPlanHasErrorItem BDTSExecPlanHasErrorItem 1
BDTSExecPlanIsActive BDTSExecPlanIsActive 1
BDTSExecPlanStartDateTime BDTSExecPlanStartDateTime 1
BDTSExecPlanStatus BDTSExecPlanStatus 1
BDTSExecPlanUseCase BDTSExecPlanUseCase 1
@EndUserText.label: 'Execution Plan Header'

@AbapCatalog: {
  sqlViewName: 'RBDTSEXECPLANHD',
  compiler.compareFilter: true }

@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #SAP_INTERNAL_API
}

@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #A,
     sizeCategory:   #S
   }
}

@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.allowExtensions:false

@ClientHandling: {
     type: #INHERITED,
     algorithm: #SESSION_VARIABLE
}

define view R_BDTSExecutionPlanHeader
  as select from bdts_pf_plan
{

  key transformation_area_id as BDTSTransformationAreaID,
  key execution_plan_id      as BDTSExecPlanID,
      use_case               as BDTSExecPlanUseCase,
      execution_plan_status  as BDTSExecPlanStatus,
      is_active              as BDTSExecPlanIsActive,
      has_error_item         as BDTSExecPlanHasErrorItem,
      creation_datetime      as BDTSExecPlanCreationDateTime,
      start_datetime         as BDTSExecPlanStartDateTime,
      end_datetime           as BDTSExecPlanEndDateTime
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BDTS_PF_PLAN"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/