I_TEXTOBJECTTYPETEXT
Text Object Type - Text
I_TEXTOBJECTTYPETEXT is a CDS View in S/4HANA. Text Object Type - Text. It contains 2 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_ACMTrdgContrTextObjTypeTxt | view | from | BASIC | Master Data for ACM Trading Contract - Text |
| P_PurchaseCtrTextFileInter | view | left_outer | BASIC |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| Language | Language | 1 | |
| TextObjectTypeName | Note | 1 |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'TextObjectType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ITXTOBJECTTYPTXT'
@EndUserText.label: 'Text Object Type - Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT ]
define view I_TextObjectTypeText as select from ttxit
association [0..1] to I_TextObjectCategory as _TextObjectCategory on
$projection.TextObjectCategory = _TextObjectCategory.TextObjectCategory
association [0..1] to I_Language as _Language on
$projection.Language = _Language.Language
association [0..1] to I_TextObjectType as _TextObjectType on
$projection.TextObjectType = _TextObjectType.TextObjectType and
$projection.TextObjectCategory = _TextObjectType.TextObjectCategory
{
@ObjectModel.foreignKey.association: '_TextObjectCategory'
key ttxit.tdobject as TextObjectCategory,
@ObjectModel.foreignKey.association: '_TextObjectType'
key ttxit.tdid as TextObjectType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ttxit.tdspras as Language,
@Semantics.text: true
ttxit.tdtext as TextObjectTypeName,
_TextObjectType,
_TextObjectCategory,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TTXIT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TEXTOBJECTCATEGORY",
"I_TEXTOBJECTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/