2007 Nov 01 6:41 AM
Hi gurus ,
plz tell me how can i find long text information for below function for a transaction QP03.
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = ?
name = ?
object = ?
Points will be rewarded.
2007 Nov 01 6:47 AM
Hi
Double click on the long text or goto change Text editor
from Menu GOTO-> HEADER
you will see the 4 parameters OBJECT,ID,OBJECTNAME and LANGUAGE
use them in the fun module READ_TEXT and fetch the long text
Regards
Anji
Hi gurus ,
plz tell me how can i find long text information for below function for a transaction QP03.
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = ?
name = ?
object = ?
Points will be rewarded.
2007 Nov 01 6:43 AM
Go to the table STXL
Ull get da info in the same table
Hope dis helps..reward if it does
2007 Nov 01 6:47 AM
Hi
Double click on the long text or goto change Text editor
from Menu GOTO-> HEADER
you will see the 4 parameters OBJECT,ID,OBJECTNAME and LANGUAGE
use them in the fun module READ_TEXT and fetch the long text
Regards
Anji
2013 May 20 7:47 AM
Hi,
I am facing the same problem, Can you please let me know what is the object name. Is it a combination of some field.
Thanks
Sanjaya
2007 Nov 01 6:53 AM
hi,
when you run that particular transaction,
in the menu goto....GOTO->HEADER.
here you will get the details of parameters we need to pass to the FM READ_TEXT.
2007 Nov 01 7:07 AM
Hi,
Double click on the long text.
from Menu bar GOTO-> HEADER
you will see the 4 parameters OBJECT , ID, OBJECTNAME and LANGUAGE
use them in the fun module READ_TEXT and fetch the long text.
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
id = object-id
language = 'EN'
name = object-name
object = object
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
IMPORTING
HEADER =
tables
lines = 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.
Reward pots if usefull
Srimanta
2007 Nov 01 7:15 AM
Hi
Go to ur transaction , Goto Text editor and from GOTO Menu Select Header . There u can see
OBJECT,ID,OBJECTNAME and LANGUAGE. only OBJECTNAME varies for a particular transaction remaining all will be consatnt .Then u can use this in ur program.
Thanks,
Shafivullah Mohammad
2007 Nov 01 7:16 AM
Hi Rajesh,
For the TCode : QP03
select the Items
Navigate thru -> GOTO-> LONG TEXT
this shld take you to the Texts and from there you can navigate to the script editor
There naviagate thru GOTO->HEADER
u can find the details for the values to be passed to the READ_TEXT FM.
Also tables TTXID and STXH.
Regards
Usha
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |