2008 Aug 22 12:25 PM
Hi,
We are planning to upload material long text data (header) using CREATE_TEXT. My question is, does it have a limitation in terms of number of lines or characters?
We plan to load at least 2000 characters. Please let me know if this is doable in the material long text. thank you.
Hi,
We are planning to upload material long text data (header) using CREATE_TEXT. My question is, does it have a limitation in terms of number of lines or characters?
We plan to load at least 2000 characters. Please let me know if this is doable in the material long text. thank you.
2008 Aug 22 1:01 PM
hi,
I did that longtext uploading.. what i found is there is a limitation in characters per line i.e(72 per line) but there is no limitations in lines..
Pls do that and reply.. Let me know about that..
thank u,
2008 Aug 22 1:04 PM
2008 Aug 22 1:07 PM
Hi,
Use the function module 'READ_TEXT' as shown below.
call function 'READ_TEXT'
exporting
client = sy-mandt
id = p_id1
language = p_lang1
name = p_name
object = p_object1
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
IMPORTING
HEADER =
tables
lines = p_line1
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.
Thanks,
Khushboo.
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |