I_SpecSubstanceNatureText
Specification Substance Nature Text
I_SpecSubstanceNatureText is a Basic CDS View that provides data about "Specification Substance Nature Text" in SAP S/4HANA. It reads from 1 data source (tcg35) and exposes 5 fields with key fields SpecificationSubstanceNatr, Language. It has 2 associations to related views. Part of development package VDM_PLMB_SPC_BAS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcg35 | tcg35 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_SpecSubstanceNature | _SubstanceNature | $projection.SpecificationSubstanceNatr = _SubstanceNature.SpecificationSubstanceNatr |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECSUBNATRT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | SpecificationSubstanceNatr | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | Specification Substance Nature Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationSubstanceNatr | |||
| KEY | Language | tcg35 | langu | |
| SpecificationSubstanceNatrDesc | ||||
| _Language | _Language | |||
| _SubstanceNature | _SubstanceNature |
@AbapCatalog.sqlViewName: 'ISPECSUBNATRT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'SpecificationSubstanceNatr'
@ObjectModel.semanticKey: [ 'SpecificationSubstanceNatr' ]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Specification Substance Nature Text'
define view I_SpecSubstanceNatureText
as select from tcg35
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_SpecSubstanceNature as _SubstanceNature on $projection.SpecificationSubstanceNatr = _SubstanceNature.SpecificationSubstanceNatr
{
@ObjectModel.foreignKey.association: '_SubstanceNature'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key cast(tcg35.subchar as /plmb/spc_subst_natr preserving type ) as SpecificationSubstanceNatr,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key tcg35.langu as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
cast(tcg35.subcharnam as /plmb/spc_subst_natr_desc preserving type ) as SpecificationSubstanceNatrDesc,
/* Associations */
_Language,
_SubstanceNature
}
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