I_ControllingStructure

DDL: I_CONTROLLINGSTRUCTURE Type: view_entity BASIC Package: KACT

Controlling Structure

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

Data Sources (1)

SourceAliasJoin Type
tsc0a tsc0a from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ControllingStructureText _Text $projection.ControllingStructureType = _Text.ControllingStructureType and $projection.ControllingStructure = _Text.ControllingStructure
[0..1] I_ControllingStructureType _ControllingStructureType $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType

Annotations (9)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ControllingStructureType sctyp
KEY ControllingStructure scnam
_Text _Text
_ControllingStructureType _ControllingStructureType
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ControllingStructure'

@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
@VDM :{
 viewType: #BASIC,
  lifecycle.contract.type: #NONE }


@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Controlling Structure'
define view entity I_ControllingStructure
  as select from tsc0a
  association [0..*] to I_ControllingStructureText as _Text                     on  $projection.ControllingStructureType = _Text.ControllingStructureType
                                                                                and $projection.ControllingStructure     = _Text.ControllingStructure
  association [0..1] to I_ControllingStructureType as _ControllingStructureType on  $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType
{
      @ObjectModel.foreignKey.association: '_ControllingStructureType'
  key sctyp as ControllingStructureType,
      @ObjectModel.text.association: '_Text'
  key scnam as ControllingStructure,

      _Text,
      _ControllingStructureType
}