‎2007 Dec 27 1:44 PM
Hi
when I use long text elements, i.e length up to 132 chracters,
only half portion is displaying, remaing data is truncating.
Can u write the solution?
Narendra
‎2007 Dec 27 1:48 PM
split text elements into 2 lines...
then while display use 2 texts instead one..
example.
write:/ text-001,text-002.
‎2007 Dec 27 1:48 PM
split text elements into 2 lines...
then while display use 2 texts instead one..
example.
write:/ text-001,text-002.
‎2007 Dec 27 1:51 PM
‎2007 Dec 27 1:55 PM
‎2007 Dec 27 1:58 PM
then concateante into new field .. like
DATA : text type char140.
CONCATENATE text-001 text-002 INTO text.
use text in your message..
‎2007 Dec 27 2:03 PM
Hi Narendra,
If you create a text element in a report then it will take upto 132 characters and if you create a text element with message then it will accept upto 72 characters only.
Thanks,
Vinay
‎2007 Dec 27 2:07 PM
hi ,
I've tested with 134 ( 80 + 54) chars and message type 'S'.. It's working fine...
‎2007 Dec 27 2:12 PM
‎2007 Dec 27 2:16 PM
Ok.. I did like this..
define text-001 with 80 chars length and text-002 with 50 chars length ..the try this code..
DATA : text TYPE char140.
CONCATENATE text-001 text-002 INTO text.
MESSAGE text TYPE 'S'.