A_DefectCodeGroupText
Defect Code Group Texts
A_DefectCodeGroupText is a Basic CDS View that provides data about "Defect Code Group Texts" in SAP S/4HANA. It reads from 1 data source (I_DefectCodeGroupText) and exposes 4 fields with key fields DefectCodeGroup, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DefectCodeGroupText | I_DefectCodeGroupText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_DefectCodeGroup | _DefectCodeGroup | $projection.DefectCodeGroup = _DefectCodeGroup.DefectCodeGroup |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ADEFECTCODEGRPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Defect Code Group Texts | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | DefectCodeGroup | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectCodeGroup | DefectCodeGroup | ||
| KEY | Language | Language | ||
| DefectCodeGroupText | DefectCodeGroupText | |||
| _DefectCodeGroup | _DefectCodeGroup |
@AbapCatalog.sqlViewName: 'ADEFECTCODEGRPT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@EndUserText.label: 'Defect Code Group Texts'
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #A
},
representativeKey: 'DefectCodeGroup',
dataCategory: #TEXT
}
@Metadata.ignorePropagatedAnnotations: true
define view A_DefectCodeGroupText as select from I_DefectCodeGroupText
association [1..1] to A_DefectCodeGroup as _DefectCodeGroup on $projection.DefectCodeGroup = _DefectCodeGroup.DefectCodeGroup
{
key DefectCodeGroup,
@Semantics.language: true
key Language,
@Semantics.text: true
DefectCodeGroupText,
// Association
_DefectCodeGroup
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DEFECTCODEGROUPTEXT"
],
"ASSOCIATED":
[
"A_DEFECTCODEGROUP"
],
"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