I_ControllingStructure
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)
| Source | Alias | Join Type |
|---|---|---|
| tsc0a | tsc0a | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ControllingStructureText | _Text | $projection.ControllingStructureType = _Text.ControllingStructureType and $projection.ControllingStructure = _Text.ControllingStructure |
| [0..1] | I_ControllingStructureType | _ControllingStructureType | $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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