on 2007 Nov 14 5:23 PM
Hi, In this moment i have a problem:
I use a text element to display one text, but this text has more than 250 characters.
I use a code to put this text in this field and i check this field and i can see all text but in the screen this text is not complete.
The code that i use is :
CALL FUNCTION 'READ_TEXT'
EXPORTING
client = SY-MANDT
id = 'IVER'
language = 'S'
name = aux_obj
object = 'MATERIAL'
TABLES
LINES = ti_textos
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.
loop at ti_textos.
concatenate zdesc_largop ti_textos-tdline into zdesc_largop
separated by ' '.
endloop.
ENDIF.
thanks for the help
Henry
Request clarification before answering.
Henry,
Can you check your window size whether that text can be accumalated within that window size?
Regards,
Satish
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
59 | |
8 | |
7 | |
6 | |
5 | |
5 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.