Application Development and Automation 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: 
Read only

Which table stores the TEXT

Former Member
0 Likes
2,513

Hi,

I transaction VD02 after the customer number is entered, I go to the texts from the GOTO . Please let me know in which table the these text are maintained.

thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,155

These are stored in STXH and STXL tables. But you will have to READ_TEXT function to read the text. You can find the parameter values, in the Go To --> Header.

While saving the text, use SAVE_TEXT function, following COMMIT_TEXT.

Regards,

Ravi

Note - Please mark all the helpful answers

Hi,

I transaction VD02 after the customer number is entered, I go to the texts from the GOTO . Please let me know in which table the these text are maintained.

thanks,

3 REPLIES 3
Read only

Former Member
0 Likes
2,156

These are stored in STXH and STXL tables. But you will have to READ_TEXT function to read the text. You can find the parameter values, in the Go To --> Header.

While saving the text, use SAVE_TEXT function, following COMMIT_TEXT.

Regards,

Ravi

Note - Please mark all the helpful answers

Read only

anversha_s
Active Contributor
0 Likes
2,155

hi,

The text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.

rgds

anver

Read only

Former Member
0 Likes
2,155

hi,

It store in : STXH ,STXL.

But if you want to read the value, just use this FM : READ_TEXT.

Here the sample code:


  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      id                      = id
      language                = sy-langu
      name                    = material
      object                  = obyek
    IMPORTING
      header                  = theader
    TABLES
      lines                   = tlines
    EXCEPTIONS
      id                      = 1
      language                = 2
      name                    = 3
      not_found               = 4
      object                  = 5
      reference_check         = 6
      wrong_access_to_archive = 7
      OTHERS                  = 8.

Regards,