I_MalfunctionEffect
Malfunction Effect
I_MalfunctionEffect is a Basic CDS View that provides data about "Malfunction Effect" in SAP S/4HANA. It reads from 1 data source (t357a) and exposes 2 fields with key field MalfunctionEffect. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t357a | t357a | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MalfunctionEffectText | _Text | _Text.MalfunctionEffect = $projection.MalfunctionEffect |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Malfunction Effect | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IMALFUNCTEFFECT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | MalfunctionEffect | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MalfunctionEffect | t357a | auswk | |
| _Text | _Text |
@EndUserText.label: 'Malfunction Effect'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IMALFUNCTEFFECT'
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'MalfunctionEffect'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
define view I_MalfunctionEffect as select from t357a
association [0..*] to I_MalfunctionEffectText as _Text on _Text.MalfunctionEffect = $projection.MalfunctionEffect
{
@ObjectModel.text.association: '_Text'
key t357a.auswk as MalfunctionEffect,
// propagate association
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T357A"
],
"ASSOCIATED":
[
"I_MALFUNCTIONEFFECTTEXT"
],
"BASE":
[],
"VERSION":0
}
}*/
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