I_TransportationGroupText
Transportation Group - Text
I_TransportationGroupText is a Basic CDS View that provides data about "Transportation Group - Text" in SAP S/4HANA. It reads from 1 data source (ttgrt) and exposes 5 fields with key fields TransportationGroup, Language. Part of development package CLTM_PRODUCT_TRGRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttgrt | ttgrt | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | ISDTRANSPGRPTEXT | view | |
| ObjectModel.representativeKey | TransportationGroup | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| EndUserText.label | Transportation Group - Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TransportationGroup | tragr | ||
| KEY | Language | spras | ||
| TransportationGroupName | vtext | |||
| _TransportationGroup | _TransportationGroup | |||
| _Language | _Language |
@AbapCatalog.entityBuffer.definitionAllowed: true
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'ISDTRANSPGRPTEXT'
@ObjectModel.representativeKey: 'TransportationGroup'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable:true
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
@EndUserText.label: 'Transportation Group - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view entity I_TransportationGroupText
as select from
ttgrt
association[0..1] to I_TransportationGroup as _TransportationGroup on $projection.TransportationGroup = _TransportationGroup.TransportationGroup
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_TransportationGroup'
key tragr as TransportationGroup,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
vtext as TransportationGroupName,
//Associations
_TransportationGroup,
_Language
};
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