I_SpecComponentTypeText
Specification Component Type Text
I_SpecComponentTypeText is a Basic CDS View that provides data about "Specification Component Type Text" in SAP S/4HANA. It reads from 1 data source (tcg77) and exposes 5 fields with key fields SpecificationComponentType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcg77 | tcg77 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SpecComponentType | _SpecificationComponentType | $projection.SpecificationComponentType = _SpecificationComponentType.SpecificationComponentType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECCOMPTYPET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SpecificationComponentType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Component Type Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationComponentType | compcat | ||
| KEY | Language | langu | ||
| SpecificationComponentTypeDesc | compnam | |||
| _SpecificationComponentType | _SpecificationComponentType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ISPECCOMPTYPET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SpecificationComponentType'
@ObjectModel.semanticKey: [ 'SpecificationComponentType' ]
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Component Type Text'
define view I_SpecComponentTypeText
as select from tcg77
association [0..1] to I_SpecComponentType as _SpecificationComponentType on $projection.SpecificationComponentType = _SpecificationComponentType.SpecificationComponentType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SpecificationComponentType'
key compcat as SpecificationComponentType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Semantics.text: true
compnam as SpecificationComponentTypeDesc,
_SpecificationComponentType,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCG77"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SPECCOMPONENTTYPE"
],
"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