I_SAPObjectTypeText

DDL: I_SAPOBJECTTYPETEXT SQL: IOBJTYPETXT Type: view BASIC

Text for SAP Object Type

I_SAPObjectTypeText is a Basic CDS View that provides data about "Text for SAP Object Type" in SAP S/4HANA. It reads from 1 data source (sbo_i_botypet) and exposes 5 fields with key fields Language, SAPObjectType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
sbo_i_botypet sbo_i_botypet from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SAPObjectType _SAPObjectType $projection.SAPObjectType = _SAPObjectType.SAPObjectType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IOBJTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text for SAP Object Type view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey SAPObjectType view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language bo_textlan Language
KEY SAPObjectType bo_type SOT Name
SAPObjectTypeName bo_text SAP Object Type Name
_SAPObjectType _SAPObjectType
_Language _Language

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_SAPObjectTypeText.
-- 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: IOBJTYPETXT

CREATE VIEW I_SAPObjectTypeText AS
SELECT
  bo_textlan AS Language,
  bo_type AS SAPObjectType,
  bo_text AS SAPObjectTypeName
FROM sbo_i_botypet
LEFT OUTER JOIN I_SAPObjectType AS _SAPObjectType ON SAPObjectType = _SAPObjectType.SAPObjectType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;