‎2007 Oct 15 3:18 PM
Hi Experts,
I am displaying Material description using SAP Scripts. Now if the description is big the whole alignment gets spoil.Can we wrap description somehow.
Please suggest me something
Thanks and Regards
Neha Kapoor
‎2007 Oct 15 3:26 PM
Increasing the window size not adviceble one...
rather you can truncate your text....
suppose if the window size is 30 characters. And material description is 40 characters...then you can write like this....
if field name is itab-maktx..... you can write as &itab-maktx(30)& which will display only first 30 characters of the description.
Suppose if you need the whole text then you can display that in two lines as
&itab-maktx(20)& in one line and
&itab-maktx+20(20)& in other line.
I think this will be helpful for you
if you find difficulties ....just reply me
‎2007 Oct 15 3:20 PM
Hi,
We can not WRAP the text in the script, but you can increase the window size, or restrict the number of charetcers using the offset
Regards
Sudheer
‎2007 Oct 15 3:26 PM
Increasing the window size not adviceble one...
rather you can truncate your text....
suppose if the window size is 30 characters. And material description is 40 characters...then you can write like this....
if field name is itab-maktx..... you can write as &itab-maktx(30)& which will display only first 30 characters of the description.
Suppose if you need the whole text then you can display that in two lines as
&itab-maktx(20)& in one line and
&itab-maktx+20(20)& in other line.
I think this will be helpful for you
if you find difficulties ....just reply me
‎2007 Oct 15 3:28 PM
hi
good
i would suggest you to increase your window size or if you r displaying it in a box than increase that box size,bcz if your text size is bigger than your window size than it wont come in a single line.
thanks
mrutyun^