I_TextObjectType

DDL: I_TEXTOBJECTTYPE SQL: ITEXTOBJECTTYPE Type: view BASIC

Text Object Type

I_TextObjectType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_TextObjectType is a Basic CDS View (Dimension) that provides data about "Text Object Type" in SAP S/4HANA. It reads from 1 data source (ttxid) and exposes 4 fields with key fields TextObjectType, TextObjectCategory. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-VDM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
ttxid ttxid from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_TextObjectTypeText _TextObjectTypeText $projection.TextObjectType = _TextObjectTypeText.TextObjectType and $projection.TextObjectCategory = _TextObjectTypeText.TextObjectCategory
[0..1] I_TextObjectCategory _TextObjectCategory $projection.TextObjectCategory = _TextObjectCategory.TextObjectCategory

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey TextObjectType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName ITEXTOBJECTTYPE view
EndUserText.label Text Object Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TextObjectType ttxid tdid Text ID Header
KEY TextObjectCategory ttxid tdobject Texts: Application Object
_TextObjectCategory _TextObjectCategory
_TextObjectTypeText _TextObjectTypeText

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_TextObjectType.
-- 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: ITEXTOBJECTTYPE

CREATE VIEW I_TextObjectType AS
SELECT
  ttxid.tdid AS TextObjectType,
  ttxid.tdobject AS TextObjectCategory
FROM ttxid
LEFT OUTER JOIN I_TextObjectTypeText AS _TextObjectTypeText ON TextObjectType = _TextObjectTypeText.TextObjectType AND TextObjectCategory = _TextObjectTypeText.TextObjectCategory  -- association [0..*]
LEFT OUTER JOIN I_TextObjectCategory AS _TextObjectCategory ON TextObjectCategory = _TextObjectCategory.TextObjectCategory  -- association [0..1]
;