2006 Dec 15 11:13 AM
When I goto XD03 and in Texts I find a table control which has some values...I have selected one record and gone into its Long text area....
When I goto Header popup, it shows me TEXT NAME & TEXT ID & TEXT OBJECT.....Now I want to find out for a particular customer what are the various TEXT ID been maintained.
2006 Dec 15 11:19 AM
The best option would be to go to STXH.
Enter Text OBJECT = KNA1
and TEXT NAME = customer number. This will give u list of all the IDs for that customer which are saved in the database.
The best option would be to go to STXH.
Enter Text OBJECT = KNA1
and TEXT NAME = customer number. This will give u list of all the IDs for that customer which are saved in the database.
2006 Dec 15 11:19 AM
The best option would be to go to STXH.
Enter Text OBJECT = KNA1
and TEXT NAME = customer number. This will give u list of all the IDs for that customer which are saved in the database.
2006 Dec 15 11:24 AM
2006 Dec 15 11:26 AM
Use the following to read all the enabled text-ids of customer.
TYPES: BEGIN OF ty_texts,
tdid LIKE stxl-tdid, "Text ID
tdtext LIKE ttxit-tdtext, "Description
END OF ty_texts.
data: l_t_texts TYPE TABLE OF ty_texts.
SELECT tdid tdtext
INTO TABLE l_t_texts
FROM ttxit
WHERE ttxit~tdspras = c_en
AND ttxit~tdobject = 'KNA1'.
IF l_t_texts IS NOT INITIAL.
LOOP AT l_t_texts INTO l_wa_texts.
Call function module to obtain values for Selection and First Line
CALL FUNCTION 'READ_TEXT'
EXPORTING
client = sy-mandt
id = l watexts-tdid
language = c_lang
name = CUSTOMER
object = 'KNA1',
TABLES
lines = l_t_texts2
EXCEPTIONS
id = 1
language = 2
name = 3
not_found = 4
object = 5
reference_check = 6
wrong_access_to_archive = 7
OTHERS = 8.
2006 Dec 15 2:21 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |