dear all.
i m working on ALV report for QM03 defect details.
i want to read long description text from the screen. i have used function READ_TEXT..as below..but i m not getting any text in the output..how to read tht specific text into an output field ?
i m using table QMEL for rest of the details in the report..
pls help me..
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
ID = LTQM
LANGUAGE = 'E'
NAME =
OBJECT = QMEL
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
IMPORTING
HEADER =
TABLES
LINES =
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.
jigar