I_DefectCausedByText
Defect Caused By Text
I_DefectCausedByText is a Basic CDS View that provides data about "Defect Caused By Text" in SAP S/4HANA. It reads from 1 data source (tqdefcausedbyt) and exposes 4 fields with key fields DefectCausedBy, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tqdefcausedbyt | tqdefcausedbyt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DefectCausedBy | _DefectCausedBy | $projection.DefectCausedBy = _DefectCausedBy.DefectCausedBy |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDEFECTCAUSEDBYT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Defect Caused By Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DefectCausedBy | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectCausedBy | defectcausedby | ||
| KEY | Language | langu | ||
| DefectCausedByText | text | |||
| _DefectCausedBy | _DefectCausedBy |
@AbapCatalog.sqlViewName: 'IDEFECTCAUSEDBYT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Defect Caused By Text'
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #A
},
dataCategory: #TEXT,
representativeKey: 'DefectCausedBy',
resultSet.sizeCategory: #XS
}
define view I_DefectCausedByText as select from tqdefcausedbyt
association [0..1] to I_DefectCausedBy as _DefectCausedBy on $projection.DefectCausedBy = _DefectCausedBy.DefectCausedBy
{
@ObjectModel.foreignKey.association: '_DefectCausedBy'
@ObjectModel.text.element: ['DefectCausedByText']
key defectcausedby as DefectCausedBy,
@Semantics.language: true
key langu as Language,
@Semantics.text: true
text as DefectCausedByText,
/* Associations */
_DefectCausedBy
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQDEFCAUSEDBYT"
],
"ASSOCIATED":
[
"I_DEFECTCAUSEDBY"
],
"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