I_ControllingStructureText
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsc0b | tsc0b | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_ControllingStructureType | _ControllingStructureType | $projection.ControllingStructureType = _ControllingStructureType.ControllingStructureType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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