2006 Nov 27 9:54 AM
Hi,
I transaction VD02 after the customer number is entered, I go to the texts from the GOTO . Please let me know in which table the these text are maintained.
thanks,
2006 Nov 27 9:56 AM
These are stored in STXH and STXL tables. But you will have to READ_TEXT function to read the text. You can find the parameter values, in the Go To --> Header.
While saving the text, use SAVE_TEXT function, following COMMIT_TEXT.
Regards,
Ravi
Note - Please mark all the helpful answers
Hi,
I transaction VD02 after the customer number is entered, I go to the texts from the GOTO . Please let me know in which table the these text are maintained.
thanks,
2006 Nov 27 9:56 AM
These are stored in STXH and STXL tables. But you will have to READ_TEXT function to read the text. You can find the parameter values, in the Go To --> Header.
While saving the text, use SAVE_TEXT function, following COMMIT_TEXT.
Regards,
Ravi
Note - Please mark all the helpful answers
2006 Nov 27 10:01 AM
hi,
The text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.
rgds
anver
2006 Nov 27 10:01 AM
hi,
It store in : STXH ,STXL.
But if you want to read the value, just use this FM : READ_TEXT.
Here the sample code:
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = id
language = sy-langu
name = material
object = obyek
IMPORTING
header = theader
TABLES
lines = tlines
EXCEPTIONS
id = 1
language = 2
name = 3
not_found = 4
object = 5
reference_check = 6
wrong_access_to_archive = 7
OTHERS = 8.
Regards,
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |