P_TextIdType

DDL: P_TEXTIDTYPE SQL: PTXTTYP Type: view BASIC

P_TextIdType is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ttxit) and exposes 4 fields with key fields TechnicalObjectType, DocumentText.

Data Sources (1)

SourceAliasJoin Type
ttxit ttxit from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PTXTTYP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TechnicalObjectType tdobject Texts: Application Object
KEY DocumentText tdid Text ID
Note tdtext Short Text
Language tdspras Language
@VDM.private : true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PTXTTYP'

@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING

define view P_TextIdType 

 as select from ttxit 
{

     @EndUserText.label: 'Texts: Application Object'
       key tdobject as TechnicalObjectType,
       
     @EndUserText.label: 'Text ID'
       key tdid as DocumentText,
     
     @EndUserText.label: 'Short Text'
         @Semantics.text
     
       tdtext as Note,
     
     @EndUserText.label: 'Language'
      @Semantics.language: true
       tdspras as Language

}
where tdobject = 'EBAN'