I_TEXTOBJECT

CDS View

Text Object

I_TEXTOBJECT is a CDS View in S/4HANA. Text Object. It contains 4 fields. 12 CDS views read from this table.

CDS Views using this table (12)

ViewTypeJoinVDMDescription
I_IHBAccountClosureText view inner COMPOSITE IHB Account Closure Long Text
I_IHBAccountDeletionText view inner COMPOSITE IHB Account Deletion Long Text
I_MaintenanceItemText view inner COMPOSITE Maintenance Item Long Text
I_MaintenancePlanText view inner COMPOSITE Maintenance Plan Long Text
P_ACMTrdgContrItemTxtConfigDet view from BASIC Private view: Contract Item Text Details
P_ACMTrdgContrTextDet view from BASIC Private view: Text Details
P_BatchDescrSdmVersionBySapScr view from COMPOSITE
P_InternalOrderLongDescription view_entity from COMPOSITE
P_PPM_Note view from BASIC
P_PurchaseCtrTextFileInter view from BASIC
P_ServiceDocItemNote view from COMPOSITE Service Transaction Notes
P_ServiceDocNote view from COMPOSITE Service Transaction Notes

Fields (4)

KeyField CDS FieldsUsed in Views
KEY Language Language 6
KEY TextObjectCategory TechnicalObjectType 1
KEY TextObjectKey ArchitecturalObjectNumber,TextObjectKey 5
KEY TextObjectType DocumentText 1
@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
 
}   
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"STXH"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TEXTOBJECTCATEGORY",
"I_TEXTOBJECTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/