‎2007 Jul 12 8:54 AM
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.
‎2007 Jul 12 8:57 AM
HI,
write sy-uline+0(10).
this will start from intial to 10 length
rewards if useful,
regards,
nazeer
‎2007 Jul 12 8:59 AM
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
‎2007 Jul 12 9:00 AM
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.