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

hi

Former Member
0 Likes
652

hi all,

I want to print dashed horizontal line in output screen with out using loops. Is there any statement to print that like sy-uline to print horizontal line..It would be appriciate with points if any one comes with correct answer...

Thanks in adv

Regards

Reddy

hi all,

I want to print dashed horizontal line in output screen with out using loops. Is there any statement to print that like sy-uline to print horizontal line..It would be appriciate with points if any one comes with correct answer...

Thanks in adv

Regards

Reddy

5 REPLIES 5
Read only

Former Member
0 Likes
631

u can use ULINE statement.

don't forget reward.

Sameer

Read only

Former Member
0 Likes
631

Hi Veerangi,

To print dashed lines in output with out using LOOP.

Either you can create a text element like TEXT-001 '----


'

and then use WRITE: TEXT-001

OR

You need to directly use WRITE: '----


'

<u><b>Reward points for useful answers.</b></u>

Best Regards,

Ram.

Read only

Former Member
0 Likes
631

hi...

you can also write it... and based on the length u want also...

something like this...

WRITE: '_____'.

if useful reward points

Read only

Former Member
0 Likes
631

HI,

Either you can create a text element like TEXT-001 '----


'

and then use WRITE: TEXT-001

OR

You need to directly use WRITE: '----


'

OR USE SYSTEM VARIABLES ULINE AND VLINE OR HORIZONTAL AND VERTICAL LINES RESPECTIVELY.

IF HELPFUL REWARD SOME POINTS.

WITH REGARDS,

SURESH ALURI.

Read only

Former Member
0 Likes
631

hi all,

write sy-uline frames off.

this is the statement use to print dashed line in the output screen. today only I came to know about this.

regards

Reddy