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: 

Outputting a box in a report

Former Member
0 Kudos

Hi guys,

Is it possible to ouput a box (as in square) on a single line in a report?

How am i going to do it?

Thanks a lot!

Rgds

Mark

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check below example:

DATA: l_icon TYPE icon_d VALUE '@MO@'. " ICON_DRAW_RECTANGLE

WRITE:/ l_icon AS ICON.

4 REPLIES 4

Former Member
0 Kudos

Hi,

using vline and uline u can get it

write :/1 sy-vline,12 sy-vline,12(44) sy-uline,32 sy-vline.

write :/1 sy-vline,12 sy-vline,16(12) 'ROOT LINERS',32 sy-vline.

write :/1 sy-vline,12 sy-vline,12(44) sy-uline,32 sy-vline.

within this u can make the boxes.

Former Member
0 Kudos

Check below example:

DATA: l_icon TYPE icon_d VALUE '@MO@'. " ICON_DRAW_RECTANGLE

WRITE:/ l_icon AS ICON.

0 Kudos

Thanks a lot Eswar...

Would you mind if I ask where all the ICONS are stored?

Where can I see these ICONS? thanks so much!!!

0 Kudos

You can check Table: ICON or program: RSTXICON for list of icons available.