on ‎2009 Mar 24 1:21 PM
Hi,
I want to see the contents of Object VBBK.
What data should I pass to fn. module 'READ_TEXT' to see its contents.
For ex:--
id -- 0002
language -- EN
name --- ???
object -- VBBK.
But, am pretty confused about 'name' parameter? What value should I pass to 'name'???
Thanks,
Shivaa........
Request clarification before answering.
Hi Shiva,
You are right. With FM: READ_TEXT you can see its contents.
You have only to call the FM with the right parameters.
I willl give an example of it.
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
id = '0001'
language = 'EN'
name = '0010000002'
object = 'VBBK'
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
IMPORTING
HEADER =
tables
lines = it_lines
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8
.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
The value of parameter can be the invoicenumer, or the po-number
sometimes for positions the invoicenumber concatentaed with the posnr.
like 0010000002000010.
hope this helps.
Gr., Frank
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 15 | |
| 9 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.