Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

In which table are the texts for SO10 stored?

dev_parbutteea
Active Contributor
0 Kudos

Hi all, for the transaction so10 , in which table are its contents stored?thx.

1 ACCEPTED SOLUTION

Former Member

Hello

STXH, STXL

5 REPLIES 5

Former Member
0 Kudos

It is stored in table STXH ,STXL .

uSED FUNCTION READ_TEXT to retrieve it absed on text object and Id STROED IN ABOVE tables.

Former Member

Hello

STXH, STXL

GauthamV
Active Contributor
0 Kudos

hi,

if you have SEARCHED in SCN you might have got lot of posts on this question.

if you have searched then didn't you find this.

[https://forums.sdn.sap.com/click.jspa?searchID=16992449&messageID=5418499]

naveen_inuganti2
Active Contributor
0 Kudos

Hi..,

We can read that texts with following function module..,

call function 'READ_TEXT'
    exporting
*     CLIENT                        = SY-MANDT
      id                           = thead-tdid                  <---text id
      language                      = thead-tdspras               <---sy-langu
      name                           = thead-tdname                 <----input value for id
      object                          = thead-tdobject           <----object name
    importing
      header                        = thead                    <-----type thead
    tables
      lines                         = tline           <---type standard table of TLINE
   exceptions
     id                            = 1
     language                      = 2
     name                          = 3
     not_found                     = 4
     object                        = 5
     reference_check               = 6
     wrong_access_to_archive       = 7
     others                        = 8 .
  if sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  endif.

Thanks,

Naveen.I

former_member183994
Active Participant
0 Kudos

You don't have to worry about tables, since there is function module READ_TEXT where you can get its contents.