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: 

how to display dotted lines?

Former Member
0 Kudos

hai frenz...

actually i can diaplay lines like

____________________________ this...but i want my line must have to be displayed like this

-


which command i ve to use to get this......

help me out...

regards

meena

3 REPLIES 3

Former Member
0 Kudos

try this...

data: row type SY-MAROW.
do 60 times.
row = row + 2.
write: '_'.
enddo.

former_member585060
Active Contributor
0 Kudos

Hi,

try this way

WRITE :/2 '_', 5 '_', 8 '_', 11 '_', 14 '_', 17 '_', so on till required line width

Regards

Bala Krishna

former_member188685
Active Contributor
0 Kudos

there is no command for that.

you may have to go for write like this

write : '- - - - - - - - - - - - - - - - - - - - - - - - - '.