I_ControllingStructureType
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ControllingStructureTypeText | _Text | $projection.ControllingStructureType = _Text.ControllingStructureType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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';
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA