I_EHSTASKDEFEXECUTION
EHSTask Definition Execution
I_EHSTASKDEFEXECUTION is a CDS View in S/4HANA. EHSTask Definition Execution. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_EHSTaskDefExecutionTP | view | from | TRANSACTIONAL | EHSTask Definition Execution TP |
@AbapCatalog.sqlViewName: 'IEHSTASKDEFEXEC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'EHSTask Definition Execution'
@ObjectModel.representativeKey: 'EHSTaskDefinitionExecutionUUID'
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #M, // < 100.000
dataClass: #MASTER }
@Search.searchable: false
@VDM.viewType: #BASIC
define view I_EHSTaskDefExecution
as select from ehfndd_tdef_exec as EHSTaskDefExecution
association [1..1] to I_EHSTaskDefinition as _EHSTaskDefinition on $projection.EHSTaskDefinitionUUID = _EHSTaskDefinition.EHSTaskDefinitionUUID
{
key EHSTaskDefExecution.ehstaskdefinitionexecutionuuid as EHSTaskDefinitionExecutionUUID,
@ObjectModel.foreignKey.association: '_EHSTaskDefinition'
EHSTaskDefExecution.ehstaskdefinitionuuid as EHSTaskDefinitionUUID,
EHSTaskDefExecution.ehstasknextexecutcdatetime as EHSTaskNextExecUTCDateTime,
EHSTaskDefExecution.ehstasklastexecutcdatetime as EHSTaskLastExecUTCDateTime,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
#TO_COMPOSITION_ROOT]
_EHSTaskDefinition
}