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

Table for long Text

Former Member
0 Likes
4,341

Hi All,

Can anyone tell me . OP header long text & item long text where stored. can i show this in table. what is the table & field name.

Thanks in Advance

Jitendra

4 REPLIES 4
Read only

Former Member
0 Likes
3,445

hi,

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = 'PRUE'

language = tdspras

name = tdname

object = 'MATERIAL'

TABLES

lines = int_tline

EXCEPTIONS

id = 1

language = 2

name = 3

not_found = 4

object = 5

reference_check = 6

wrong_access_to_archive = 7

OTHERS = 8.

then if you want upload the long text use SAVE_TEXT FM

CALL FUNCTION 'SAVE_TEXT'

EXPORTING

CLIENT = SY-MANDT

HEADER = t_header

SAVEMODE_DIRECT = 'X'

  • OWNER_SPECIFIED = ' '

  • LOCAL_CAT = ' '

  • IMPORTING

  • FUNCTION =

  • NEWHEADER =

TABLES

LINES = t_long

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

OBJECT = 4

OTHERS = 5

Read only

Former Member
0 Likes
3,445

Hi,

Check these tables STXH, STXL.

READ_TEXT FM to be used to read it.

Reward if useful!

Read only

Former Member
0 Likes
3,445

Hi

Any Application Header and tem Long texts are stored in STXH table with the 4 parameters OBJECT,ID,NAME and LANG

These texts are fetched from databse using READ_TEXT fun module by passing the above 4 parameters.

Double click on the text, from the text editor menu GOTO-> HEDAER

you will find the all above 4 paramters

so accordingly you have to pass to the fun module READ_TEXT to fetch the texts.

<b>Reward points for useful Answers</b>

Regards

Anji

Read only

Former Member
0 Likes
3,445

This message was moderated.