2009 Feb 17 2:38 PM
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.
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!
2009 Feb 17 3:02 PM
2009 Feb 17 3:31 PM
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!
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |