I_FMEATaskTypeText
FMEA Task Type - Text
I_FMEATaskTypeText is a Basic CDS View that provides data about "FMEA Task Type - Text" in SAP S/4HANA. It reads from 1 data source (plmc_audit_actyt) and exposes 4 fields with key fields FMEATaskType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| plmc_audit_actyt | plmc_audit_actyt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FMEATaskType | _FMEATaskType | $projection.FMEATaskType = _FMEATaskType.FMEATaskType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEASKTTXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | FMEA Task Type - Text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | FMEATaskType | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEATaskType | acttyp | ||
| KEY | Language | langu | ||
| FMEATaskTypeText | acttyp_txt | |||
| _FMEATaskType | _FMEATaskType |
@AbapCatalog.sqlViewName: 'IFMEASKTTXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType:#BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'FMEA Task Type - Text'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FMEATaskType'
define view I_FMEATaskTypeText as select from plmc_audit_actyt
association [0..1] to I_FMEATaskType as _FMEATaskType on $projection.FMEATaskType = _FMEATaskType.FMEATaskType
{
key acttyp as FMEATaskType,
@Semantics.language: true
key langu as Language,
@Semantics.text: true
acttyp_txt as FMEATaskTypeText,
// Make association public
_FMEATaskType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLMC_AUDIT_ACTYT"
],
"ASSOCIATED":
[
"I_FMEATASKTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"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