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: 

Underline for more than 255 characters

Former Member
0 Kudos

Hi Experts,

I am developing a list report. I have used sy-uline in the report. My content extends to around 300 characters in the title. I tried the command:-

WRITE:/ sy-uline(300).


But I get a syntax error.Any suggestions to fulfill this requirement.



-Regards,

Ragavan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

try this:

Regards, Dieter

2 REPLIES 2

Former Member
0 Kudos

Hi,

try this:

Regards, Dieter

former_member184569
Active Contributor
0 Kudos

HI Ragavan,

Specifiy a greater line size in the report statement

REPORT zreport

NO STANDARD PAGE HEADING

LINE-SIZE 300.

uline.

or

REPORT ztest
        NO STANDARD PAGE HEADING LINE-SIZE 500.
        uline at 0(300).