I_OTRText
OTR Text
I_OTRText is a Basic CDS View that provides data about "OTR Text" in SAP S/4HANA. It reads from 1 data source (sotr_text) and exposes 6 fields with key fields OnlnTxtRpstryConceptID, Language, OnlnTxtObjectID. Part of development package SOTR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sotr_text | sotr_text | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOTRTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | OTR Text | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OnlnTxtRpstryConceptID | concept | ||
| KEY | Language | langu | ||
| _Language | _Language | |||
| KEY | OnlnTxtObjectID | object | ||
| OnlinePrimaryFlag | flag_cntxt | |||
| Text | text |
@AbapCatalog.sqlViewName: 'IOTRTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'OTR Text'
@VDM.viewType: #BASIC
define view I_OTRText as select from sotr_text
association[0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key concept as OnlnTxtRpstryConceptID,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
_Language,
key object as OnlnTxtObjectID,
flag_cntxt as OnlinePrimaryFlag,
@Semantics.text:true
text as Text
}
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