I_SpecSubstanceNatureText

DDL: I_SPECSUBSTANCENATURETEXT SQL: ISPECSUBNATRT Type: view BASIC Package: VDM_PLMB_SPC_BAS

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)

SourceAliasJoin Type
tcg35 tcg35 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_SpecSubstanceNature _SubstanceNature $projection.SpecificationSubstanceNatr = _SubstanceNature.SpecificationSubstanceNatr

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}