I_SpecTypeText

DDL: I_SPECTYPETEXT SQL: ISPECTYPET Type: view BASIC

Specification Type Text

I_SpecTypeText is a Basic CDS View that provides data about "Specification Type Text" in SAP S/4HANA. It reads from 1 data source (tcg32) and exposes 5 fields with key fields SpecificationType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tcg32 tcg32 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SpecType _SpecificationType $projection.SpecificationType = _SpecificationType.SpecificationType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISPECTYPET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK 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 SpecificationType view
Search.searchable true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Specification Type Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SpecificationType
KEY Language langu
SpecificationTypeDescription
_SpecificationType _SpecificationType
_Language _Language
@AbapCatalog.sqlViewName: 'ISPECTYPET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'SpecificationType'
@ObjectModel.semanticKey:  [ 'SpecificationType' ]

@Search.searchable: true

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@EndUserText.label: 'Specification Type Text'
define view I_SpecTypeText
  as select from tcg32

  association [0..1] to I_SpecType as _SpecificationType on $projection.SpecificationType = _SpecificationType.SpecificationType
  association [0..1] to I_Language as _Language          on $projection.Language = _Language.Language
{

      @ObjectModel.foreignKey.association: '_SpecificationType'
      @Search.ranking: #HIGH
  key cast(subcat as /plmb/spc_type preserving type)      as SpecificationType,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key langu                                               as Language,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text
      cast(subnam as /plmb/spc_type_desc preserving type) as SpecificationTypeDescription,

      /* Associations */
      _SpecificationType,
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCG32"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SPECTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/