I_Text_Type

DDL: I_TEXT_TYPE SQL: ITEXTTYPE Type: view BASIC

Text Types

I_Text_Type is a Basic CDS View that provides data about "Text Types" in SAP S/4HANA. It reads from 1 data source (ttxid) and exposes 4 fields with key fields TechnicalObjectType, DocumentText, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ttxid TextId from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Text_Type_Db _Text $projection.DocumentText = _Text.DocumentText and $projection.TechnicalObjectType = _Text.TechnicalObjectType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ITEXTTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text Types view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TechnicalObjectType tdobject Text object
KEY DocumentText tdid Text ID Header
KEY Language _Text Language Report Text Language
Note _Text Note TradeRequest Comment

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_Text_Type.
-- 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: ITEXTTYPE

CREATE VIEW I_Text_Type AS
SELECT
  tdobject AS TechnicalObjectType,
  tdid AS DocumentText,
  _Text.Language AS Language,
  _Text.Note AS Note
FROM ttxid AS TextId
LEFT OUTER JOIN I_Text_Type_Db AS _Text ON DocumentText = _Text.DocumentText AND TechnicalObjectType = _Text.TechnicalObjectType  -- association [0..*]
;