I_TernaryLogicalStateText
Ternary Logical State Text
I_TernaryLogicalStateText is a Basic CDS View that provides data about "Ternary Logical State Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, TernaryLogicalState. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_TernaryLogicalState | _TernaryLogicalState | $projection.TernaryLogicalState = _TernaryLogicalState.TernaryLogicalState |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITRNRYLGCLSTATET | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | TernaryLogicalState | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Ternary Logical State Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | TernaryLogicalState | |||
| TernaryLogicalStateText | dd07t | ddtext | ||
| _TernaryLogicalState | _TernaryLogicalState | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ITRNRYLGCLSTATET'
@AbapCatalog.preserveKey:true
//@Analytics.dataExtraction.enabled: true
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'TernaryLogicalState'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Ternary Logical State Text'
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for ddic access
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #L, // < 10.000.000
dataClass: #META }
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_TernaryLogicalStateText as select from dd07t
association [0..1] to I_TernaryLogicalState as _TernaryLogicalState on $projection.TernaryLogicalState = _TernaryLogicalState.TernaryLogicalState
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
key cast ( substring( domvalue_l, 1, 1 ) as ehfnd_tri_state preserving type ) as TernaryLogicalState,
@Semantics.text: true
@UI.hidden: true
dd07t.ddtext as TernaryLogicalStateText,
_TernaryLogicalState,
_Language
}where dd07t.domname = 'EHFND_TRI_STATE' and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TERNARYLOGICALSTATE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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