I_CharcAttributeCodeGrpText
Characteristic Attribute Code Group - Text
I_CharcAttributeCodeGrpText is a Basic CDS View that provides data about "Characteristic Attribute Code Group - Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 5 fields with key fields CharacteristicAttributeCodeGrp, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpgt | qpgt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CharcAttributeCodeGrp | _CharcAttributeCodeGrp | $projection.CharacteristicAttributeCodeGrp = _CharcAttributeCodeGrp.CharacteristicAttributeCodeGrp |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICHRCATTRBCDGRPT | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Characteristic Attribute Code Group - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CharacteristicAttributeCodeGrp | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CharacteristicAttributeCodeGrp | qpgt | codegruppe | |
| KEY | Language | sprache | ||
| CharacteristicAttribCodeGrpTxt | ||||
| _CharcAttributeCodeGrp | _CharcAttributeCodeGrp | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ICHRCATTRBCDGRPT'
//@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Characteristic Attribute Code Group - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #M,
serviceQuality: #A
}
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CharacteristicAttributeCodeGrp'
@Metadata.ignorePropagatedAnnotations: true
define view I_CharcAttributeCodeGrpText as select from qpgt
association [1..1] to I_CharcAttributeCodeGrp as _CharcAttributeCodeGrp
on $projection.CharacteristicAttributeCodeGrp = _CharcAttributeCodeGrp.CharacteristicAttributeCodeGrp
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key qpgt.codegruppe as CharacteristicAttributeCodeGrp,
@Semantics.language: true
key sprache as Language,
@Semantics.text: true
cast( kurztext as vdm_qktextgr preserving type ) as CharacteristicAttribCodeGrpTxt,
/* Associations */
_CharcAttributeCodeGrp,
_Language
}
where katalogart = '1'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"QPGT"
],
"ASSOCIATED":
[
"I_CHARCATTRIBUTECODEGRP",
"I_LANGUAGE"
],
"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