I_CtrlgOverheadRunModeText
View for run mode text
I_CtrlgOverheadRunModeText is a Basic CDS View that provides data about "View for run mode text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 2 fields with key field ControllingOverheadRunMode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOVHDRUNMODETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | View for run mode text | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ControllingOverheadRunMode | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingOverheadRunMode | |||
| ControllingOverheadRunModeText | ddtext |
@AbapCatalog.sqlViewName: 'IOVHDRUNMODETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'View for run mode text'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'ControllingOverheadRunMode'
define view I_CtrlgOverheadRunModeText
as select from dd07v
{
key cast( domvalue_l as fco_ovhd_run_mode ) as ControllingOverheadRunMode,
@Semantics.text: true
ddtext as ControllingOverheadRunModeText
}
where
ddlanguage = $session.system_language
and domname = 'FCO_OVHD_RUN_MODE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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