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

Longtext values for Notification in Tcode IW53

Former Member
0 Likes
873

In IW53 for Notification please let me know the table which stores the longtext values

2 REPLIES 2
Read only

manthanraja
Active Participant
0 Likes
660

The Table is RQM03 and the component is Ltext1

Regards

M.

Read only

Former Member
0 Likes
660

Try Something like following

DATA LT_LINES TYPE TABLE OF TLINE WITH HEADER LINE.
  PARAMETERS  P_QMNUM TYPE QMNUM.

START-OF-SELECTION.

  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT  = P_QMNUM
    IMPORTING
      OUTPUT = P_QMNUM.

  CALL FUNCTION 'READ_TEXT'
    EXPORTING
*   CLIENT                        = SY-MANDT
      ID                            = 'LTXT'
      LANGUAGE                      = SY-LANGU
      NAME                          = P_QMNUM
      OBJECT                        = 'QMEL'
*   ARCHIVE_HANDLE                = 0
*   LOCAL_CAT                     = ' '
* IMPORTING
*   HEADER                        =
    TABLES
      LINES                         = LT_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.
  ENDIF.