I_TripRefDocTypeT
Trip Reference Doc Type Texts
I_TripRefDocTypeT is a Basic CDS View that provides data about "Trip Reference Doc Type Texts" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 4 fields with key fields TripDocType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITRIPREFDOCT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | TripDocType | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Trip Reference Doc Type Texts | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TripDocType | domvalue_l | Reference Document | |
| KEY | Language | ddlanguage | ||
| TripDocTypeDesc | ddtext | Trip Reference Desc. | ||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ITRIPREFDOCT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL,
dataCategory: #TEXT,
representativeKey : 'TripDocType'
}
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Trip Reference Doc Type Texts'
define view I_TripRefDocTypeT
as select from dd07v
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@EndUserText.label: 'Reference Document'
key domvalue_l as TripDocType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
@UI.hidden: true
key ddlanguage as Language,
@EndUserText.label: 'Trip Reference Desc.'
@EndUserText.quickInfo: 'Trip Reference Description'
@Semantics.text: true
ddtext as TripDocTypeDesc,
_Language
}
where
domname = 'OIJ08_DOC_REF'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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