Application Development 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: 

Insert 2 lines of text in a box in report.

Former Member
0 Kudos

Hello ,

I had designed a box by using sy-uline and sy-vline.

But, I need to enter text in 2 differrent lines...in that box.

Here is the code :

SKIP TO LINE 1.

ULINE AT 281(40).

WRITE : /281 SY-VLINE, 282(41) 'Ventas Internas o Exportación Gravadas', 320 SY-VLINE.

It is displaying properly in that box. BUt the requirement is I need to display the text in 2 diff lines as specified:

Ventas Internas o

Exportación Gravadas

This requirement is very urgent for me...any suggestions would be appreciated.

Thanks & Regards,

Keats.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi

add another WRITE statement as :

SKIP TO LINE 1.

ULINE AT 281(40).

WRITE : /281 SY-VLINE, 282(41) 'Ventas Internas', 320 SY-VLINE.

WRITE : /281 SY-VLINE, 282(41) 'Exportación Gravadas', 320 SY-VLINE.

hope help u.

5 REPLIES 5

Former Member
0 Kudos

hi

add another WRITE statement as :

SKIP TO LINE 1.

ULINE AT 281(40).

WRITE : /281 SY-VLINE, 282(41) 'Ventas Internas', 320 SY-VLINE.

WRITE : /281 SY-VLINE, 282(41) 'Exportación Gravadas', 320 SY-VLINE.

hope help u.

Former Member
0 Kudos

Write as :

SKIP TO LINE 1.

ULINE AT 281(40).

WRITE : /281 SY-VLINE, 282(41) 'Ventas Internas o'

320 SY-VLINE.

WRITE : /281 SY-VLINE, 282(41) 'Exportación Gravadas',

320 SY-VLINE.

Former Member
0 Kudos

Hi,

Use the code as shown below.

REPORT ztest line-size 325 no standard page heading.

SKIP TO LINE 1.

ULINE AT 281(40).

WRITE : /281 SY-VLINE, 282(41) 'Ventas Internas o', 320 SY-VLINE,

/281 SY-VLINE, 282(41) 'Exportación Gravadas', 320 SY-VLINE.

Former Member
0 Kudos

Hi,

Check the code below:

ULINE AT 1(40).

WRITE :/1 '|', 2 'Ventas Internas o', 21 '|'.
write:/1 '|', 2 'Exportación Gravadas', 21 '|'.

Regards

Kannaiah

Former Member
0 Kudos

Hello Sachin, Srininvas, Velangini, Kavuri.

Thank you for your response!

The information that you had provided was helpful.

Have a great evening!

Points rewarded........

Thanks & Regards

Kittu

Edited by: Kittu on May 27, 2008 3:02 PM