‎2007 Aug 06 8:31 AM
Hello Friends,
I want to display text with 132 charactors in form using this statement: &DEL_TEXT-TDLINE&
But currently the my form column can hold only 60 charactors in one line and remaining texts are overlaping in the same line. My question is how can I print remaining charactors in next line?
Please help me.
Thanks,
Shreekant
PH
PROTECT
ENDPROTECT
‎2007 Aug 06 8:34 AM
Hi
Print the text in 2 lines one below other like
&DEL_TEXT-TDLINE+0(60)&
&DEL_TEXT-TDLINE+61(61)&
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Aug 06 8:34 AM
Hi
Print the text in 2 lines one below other like
&DEL_TEXT-TDLINE+0(60)&
&DEL_TEXT-TDLINE+61(61)&
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Aug 06 8:37 AM
Hi,
Use
v_variable = wa_final-variable+0(60).
v_variable1 = wa_final-variable+61(60).
This will print first 60 characters in 1 line and rest in the next line.
regards,
pritha.
null