I_TransportationGroup

DDL: I_TRANSPORTATIONGROUP SQL: ISDTRANSPGRP Type: view BASIC

Transportation Group

I_TransportationGroup is a Basic CDS View that provides data about "Transportation Group" in SAP S/4HANA. It reads from 1 data source (ttgr) and exposes 2 fields with key field TransportationGroup. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view retrieves information about the transportation group. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description TransportationGroup Transportation group

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
ttgr ttgr from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TransportationGroupText _Text $projection.TransportationGroup = _Text.TransportationGroup

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey TransportationGroup view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.supportedCapabilities #CDS_MODELING_DATA_SOURCE view
EndUserText.label Transportation Group view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDTRANSPGRP view
Search.searchable true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TransportationGroup tragr Transport.Group
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_TransportationGroup.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISDTRANSPGRP

CREATE VIEW I_TransportationGroup AS
SELECT
  tragr AS TransportationGroup
FROM ttgr
LEFT OUTER JOIN I_TransportationGroupText AS _Text ON TransportationGroup = _Text.TransportationGroup  -- association [0..*]
;