I_ControllingStructureType

DDL: I_CONTROLLINGSTRUCTURETYPE Type: view_entity BASIC Package: KACT

Controlling Structure Type

I_ControllingStructureType is a Basic CDS View (Dimension) that provides data about "Controlling Structure Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ControllingStructureType. It has 1 association to related views. Part of development package KACT.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ControllingStructureTypeText _Text $projection.ControllingStructureType = _Text.ControllingStructureType

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.representativeKey ControllingStructureType view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #NONE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Controlling Structure Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingStructureType
DomainValue domvalue_l
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED

@Analytics :{
  dataCategory: #DIMENSION ,
   internalName:#LOCAL }

@ObjectModel:{
  representativeKey: 'ControllingStructureType' ,
    usageType:{
      dataClass: #META,
      serviceQuality: #A ,
      sizeCategory: #S }}
      

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

@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Controlling Structure Type'
define view entity I_ControllingStructureType as select from dd07l 
 association [0..*] to I_ControllingStructureTypeText as _Text on $projection.ControllingStructureType = _Text.ControllingStructureType
{
  
        @ObjectModel.text.association: '_Text'
  key   cast( domvalue_l as co_sctyp ) as ControllingStructureType,
        @Consumption.hidden: true
        @Analytics.hidden: true
        @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
        domvalue_l                  as DomainValue,
        
        _Text
  
}  where   domname  = 'CO_SCTYP'
  and as4local = 'A'
  and as4vers  = '0000';