I_TEXTOBJECTTYPE
Text Object Type
I_TEXTOBJECTTYPE is a CDS View in S/4HANA. Text Object Type. It contains 2 fields. 10 CDS views read from this table.
CDS Views using this table (10)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_BPTextObjectTypeVH | view | from | CONSUMPTION | BP Text Object Type VH |
| C_CustCompanyTextObjectTypeVH | view | from | CONSUMPTION | Customer Company textobjecttype VH |
| C_CustMatlTextObjectTypeVH | view_entity | from | CONSUMPTION | Text Type for Customer Material |
| C_CustomerTextObjectTypeVH | view | inner | CONSUMPTION | Customer textobjecttype value help |
| C_CustSalesTextObjectTypeVH | view | inner | CONSUMPTION | Customer Sales textobjecttype VH |
| C_SuplrCompanyTextObjectTypeVH | view | from | CONSUMPTION | Supplier Company TextObjectType VH |
| C_SuplrPurgOrgTextObjectTypeVH | view | from | CONSUMPTION | Supplier Purchasing TextObjectType VH |
| C_SupplierTextObjectTypeVH | view | from | CONSUMPTION | Supplier TextObjectType Value help |
| I_SDDocumentItemLongTextID | view | from | BASIC | Long Text ID of Sales Document Item |
| I_SDDocumentLongTextID | view | from | BASIC | Long Text ID of SD Document |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | TextObjectCategory | TextObjectCategory | 7 |
| KEY | TextObjectType | TextObjectType | 7 |
@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
}