I_FMEATaskAssignment

DDL: I_FMEATASKASSIGNMENT Type: view_entity BASIC

Assignment to FMEA Action

I_FMEATaskAssignment is a Basic CDS View that provides data about "Assignment to FMEA Action" in SAP S/4HANA. It reads from 1 data source (cgpl_project) and exposes 9 fields with key field FMEATaskUUID.

Data Sources (1)

SourceAliasJoin Type
cgpl_project cgpl_project from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Assignment to FMEA Action view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY FMEATaskUUID
FMEATask
FMEATaskPlannedStartDateTime
FMEATaskPlannedFinishDateTime
FMEATaskActualFinishDateTime
CreatedByUser cgpl_project created_by
CreationDate cgpl_project created_on
LastChangedByUser cgpl_project changed_by
LastChangedDate cgpl_project changed_on
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Assignment to FMEA Action'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #TRANSACTIONAL
}
define view entity I_FMEATaskAssignment
  as select from cgpl_project
{
  key cast( cgpl_project.guid as plmt_fmea_node_guid preserving type )    as FMEATaskUUID,
      cast ( cgpl_project.external_id as plmt_fmea_task preserving type ) as FMEATask,
      cast( cgpl_project.planstart as plmt_planstart preserving type )    as FMEATaskPlannedStartDateTime,
      cast( cgpl_project.planfinish as plmt_planfinish preserving type )  as FMEATaskPlannedFinishDateTime,
      cast( cgpl_project.actualfinish as plmt_actualfinish preserving type )  as FMEATaskActualFinishDateTime,
      cgpl_project.created_by                                             as CreatedByUser,
      cgpl_project.created_on                                             as CreationDate,
      cgpl_project.changed_by                                             as LastChangedByUser,
      cgpl_project.changed_on                                             as LastChangedDate
}
where cgpl_project.application = 'AUD'
  and cgpl_project.object_type = 'COR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CGPL_PROJECT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/