Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP Script help..pls

Former Member
0 Likes
399

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
377

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

2 REPLIES 2
Read only

Former Member
0 Likes
378

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

Read only

Former Member
0 Likes
377

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