‎2007 Aug 13 6:07 PM
Please let me know how can I use the Read Text function module. I need to get the text that i added for the connection object, t-code ES55. The idea is to print out the information that the text has using this function.
I know that the structure of the function read text is:
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
ID = (what do i have to put here)?
LANGUAGE = SY-LANGU
NAME = (what do i have to put here)?
OBJECT = (what do i have to put here)?
IMPORTING
HEADER = (what do i have to put here)?
TABLES
LINES = (what do i have to put here)?
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8.
thanks, i am new in abap programming.
Message was edited by:
Miguel Alvear
‎2007 Aug 14 8:04 AM