I_TEXTOBJECT
Text Object
I_TEXTOBJECT is a CDS View in S/4HANA. Text Object. It contains 5 fields. 10 CDS views read from this table.
CDS Views using this table (10)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_IHBAccountClosureText | view | inner | COMPOSITE | IHB Account Closure Long Text |
| I_IHBAccountDeletionText | view | inner | COMPOSITE | IHB Account Deletion Long Text |
| I_MaintenanceItemText | view_entity | inner | COMPOSITE | Maintenance Item Long Text |
| I_MaintenancePlanText | view_entity | inner | COMPOSITE | Maintenance Plan Long Text |
| P_BatchDescrSdmVersionBySapScr | view | from | COMPOSITE | Batch description SDM version by SapScript's text header |
| P_InternalOrderLongDescription | view_entity | from | COMPOSITE | Internal Order Long Description |
| P_ProdTextSilentDataMigration | view_entity | from | BASIC | Silent Data Migration of Product texts |
| P_PurchaseCtrTextFileInter | view | from | BASIC | Purchase Contract Text File Intermediate |
| P_ServiceDocItemNote | view_entity | from | COMPOSITE | Service Transaction Notes |
| P_ServiceDocNote | view_entity | from | COMPOSITE | Service Transaction Notes |
Fields (5)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Language | Language | 7 |
| KEY | TextObjectCategory | TechnicalObjectType,TextObjectCategory | 4 |
| KEY | TextObjectKey | ArchitecturalObjectNumber,TextObjectKey | 6 |
| KEY | TextObjectType | DocumentText,TextObjectType | 4 |
| CreatedByUser | CreatedByUser | 2 |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.representativeKey: 'TextObjectKey'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.sqlViewName: 'ITEXTOBJECT'
@EndUserText.label: 'Text Object'
@Analytics.dataExtraction.enabled : true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
define view I_TextObject as select from stxh
association [0..1] to I_TextObjectType as _TextObjectType on
$projection.TextObjectType = _TextObjectType.TextObjectType and
$projection.TextObjectCategory = _TextObjectType.TextObjectCategory
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
{
key stxh.tdname as TextObjectKey ,
@ObjectModel.foreignKey.association: '_TextobjectType'
key stxh.tdid as TextObjectType,
@ObjectModel.foreignKey.association: '_Textobjectcategory'
key stxh.tdobject as TextObjectCategory,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key stxh.tdspras as Language,
tdfuser as CreatedByUser,
tdfdate as CreationDate,
tdftime as CreationTime,
tdluser as LastChangedByUser,
tdldate as LastChangeDate,
tdltime as LastChangeTime,
_TextObjectType,
_TextObjectCategory,
_Language
}