I_TextObjectType

DDL: I_TEXTOBJECTTYPE SQL: ITEXTOBJECTTYPE Type: view BASIC

Text Object Type

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.

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
KEY TextObjectCategory ttxid tdobject
_TextObjectCategory _TextObjectCategory
_TextObjectTypeText _TextObjectTypeText
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'TextObjectType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ITEXTOBJECTTYPE'
@EndUserText.label: 'Text Object Type'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]

define view I_TextObjectType
  as select from ttxid

  association [0..*] to I_TextObjectTypeText as _TextObjectTypeText on  $projection.TextObjectType     = _TextObjectTypeText.TextObjectType
                                                                    and $projection.TextObjectCategory = _TextObjectTypeText.TextObjectCategory

  association [0..1] to I_TextObjectCategory as _TextObjectCategory on  $projection.TextObjectCategory = _TextObjectCategory.TextObjectCategory
{

      @ObjectModel.text.association: '_TextobjectTypeText'
  key ttxid.tdid     as TextObjectType,
      @ObjectModel.foreignKey.association: '_TextObjectCategory'
  key ttxid.tdobject as TextObjectCategory,
      _TextObjectCategory,
      _TextObjectTypeText


}