‎2007 Jul 06 10:46 AM
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
‎2007 Jul 06 10:48 AM
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
‎2007 Jul 06 10:49 AM
Hi,
Check these tables STXH, STXL.
READ_TEXT FM to be used to read it.
Reward if useful!
‎2007 Jul 06 10:52 AM
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
‎2011 Jun 07 10:31 AM