I_FMEATaskAssignment
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)
| Source | Alias | Join Type |
|---|---|---|
| cgpl_project | cgpl_project | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA