cancel
Showing results for 
Search instead for 
Did you mean: 

sy-uline for text

Former Member
0 Kudos

hi,

in one column i have the following text.

SPECIFICATIONS

L.LIMIT ULIMIT RESULT

i placed the above text in one column.i want line below the 'SPECIFICATIONS' like

SPECIFICATIONS

_______________________________

L.LIMIT ULIMIT RESULT

i wanted the data for L.LIMIT ULIMIT RESULT also to be separated by line.

please suggest how can i do that?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

are u talking about script / report.

in script u can use command like BOX,LINE etc.

In report u can use simply uline, this will draw a line for vertical line u can

use sy-vline.

Former Member
0 Kudos

sorry,im developing smartform.in system fields 'SY-ULINE' is not present.

Answers (2)

Answers (2)

former_member624107
Contributor
0 Kudos

specification

write:sy-uline(length).

write:sy-vline, L.LIMIT, sy-vline ,ULIMIT , sy-vline ,RESULT ,sy-vline .

uin length parameter u can specify the length of the line

Former Member
0 Kudos

Hi

you can use

/ &ULINE&

you can also give the length to print the line like

/ &ULINE(50)& it will print the under line upto 50 Char

Regards

anji

Former Member
0 Kudos

im developing smart form so please suggest for smart form.

Former Member
0 Kudos

try using template or table for the same...

it'l be much easier to get desired result...

Former Member
0 Kudos

i used table .in one column i want the result as in the question.