I_ControllingStructureText

DDL: I_CONTROLLINGSTRUCTURETEXT Type: view_entity BASIC Package: KACT

Controlling Structure - Text

I_ControllingStructureText is a Basic CDS View that provides data about "Controlling Structure - Text" in SAP S/4HANA. It reads from 1 data source (tsc0b) and exposes 6 fields with key fields Language, ControllingStructureType, ControllingStructure. It has 2 associations to related views. Part of development package KACT.

Data Sources (1)

SourceAliasJoin Type
tsc0b tsc0b from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_ControllingStructureType _ControllingStructureType $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #NONE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ControllingStructure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Controlling Structure - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY ControllingStructureType sctyp
KEY ControllingStructure scnam
ControllingStructureName stext
_Language _Language
_ControllingStructureType _ControllingStructureType
@AccessControl.authorizationCheck: #NOT_REQUIRED

@VDM :{
 viewType: #BASIC,
  lifecycle.contract.type: #NONE }

@ObjectModel:{
  dataCategory: #TEXT,
  representativeKey: 'ControllingStructure',
  usageType:{
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #CUSTOMIZING
    }
  }
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Controlling Structure - Text'
define view entity I_ControllingStructureText
  as select from tsc0b
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
  association [0..1] to I_ControllingStructureType as _ControllingStructureType on $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu as Language,
      @ObjectModel.foreignKey.association: '_ControllingStructureType'
  key sctyp as ControllingStructureType,
      @ObjectModel.text.element: ['ControllingStructureName']
  key scnam as ControllingStructure,
      @Semantics.text: true
      stext as ControllingStructureName,

      _Language,
      _ControllingStructureType
}