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

text_symbol_replace?

Former Member
0 Likes
481

Hi All,

I am redaing the text using READ_TEXT FM

& also using FM 'TEXT_SYMBOL_REPLACE' but the values are not populating only plain

text is getting.

can any one tell m,e what is wronge?

by debugging also i am unable to find plz let me know proper solution.

Thanks in advance.

Best Regards,

Oorvi.

2 REPLIES 2
Read only

Former Member
0 Likes
414

any answer?

Read only

Former Member
0 Likes
414

Hi,

are you passing correct parameters those FM's

for Read_Text

CALL FUNCTION 'READ_TEXT'
      EXPORTING
        id                      = 'LTQM'   "Mandatory
        language                = SY-LANGU    "Mandatory
        name                    = v_name  "Mandatory unique name of your text
        object                  = 'QMEL'    "Mandatory
      TABLES
        lines                   = t_lines
      EXCEPTIONS
        id                      = 1
        language                = 2
        name                    = 3
        not_found               = 4
        object                  = 5
        reference_check         = 6
        wrong_access_to_archive = 7
        OTHERS                  = 8.

in this case if you are not getting any values in t_lines.

then check with the database table STXH with the fields

TDOBJECT

TDNAME

TDID

TDSPRAS

then you will get an idea where is the problem in your code.

Regards!