I_SpecComponentTypeText

DDL: I_SPECCOMPONENTTYPETEXT SQL: ISPECCOMPTYPET Type: view BASIC

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)

SourceAliasJoin Type
tcg77 tcg77 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SpecComponentType _SpecificationComponentType $projection.SpecificationComponentType = _SpecificationComponentType.SpecificationComponentType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

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

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