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

REGARDING ULINE

Former Member
0 Likes
869

hi experts,

can u plz tell me how can i limit the length of ULINE in WRITE statement..what is the syntax for that

regards,

raman.

3 REPLIES 3
Read only

Former Member
0 Likes
757

HI,

write sy-uline+0(10).

this will start from intial to 10 length

rewards if useful,

regards,

nazeer

Read only

Former Member
0 Likes
757

hi,

u can use ULINE in two ways

1. ULINE. means draws a horizontal line.

2. write: /10(40) sy-uline. means draws a horizontal line starting at 10th position to 4oth position. i think in your case u can use this one

if helpful reward some points.

with regards,

Suresh.A

Read only

Former Member
0 Likes
757

Hi,

<u><b>ULINE.</b></u>

<b>Effect</b>

Outputs an unbroken underline.

<b>Note</b>

The underline extends across the entire line depending on the list width. Then, the cursor is positioned at the beginning of the next line.

<u><b>ULINE pl.</b></u>

<b>Effect</b>

Outputs an underline with a position and length determined by pl .

The position and length specification can consist of three parts:

/ New line

p Output position (one- to three-character number or

variable)

(l) Output length (one- to three-character number or

variable)

Any of these components can be omitted (see WRITE ).

<b>Note</b>

If the position and length specification contains exclusively direct values, it can be specified without an introductory AT .

The statement

ULINE AT 3(10).

corresponds to the statement

WRITE AT 3(10) SY-ULINE.

Regards,

Padmam.