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

Line Break

Former Member
0 Likes
495

Hi All,

I want to remove line breaks from the following code. Please suggest.

Code:

concatenate sy-uname '::' sy-mandt '::'

ic_unique_key into key.

Regards,

Vikas Kabra

Hi All,

I want to remove line breaks from the following code. Please suggest.

Code:

concatenate sy-uname '::' sy-mandt '::'

ic_unique_key into key.

Regards,

Vikas Kabra

2 REPLIES 2
Read only

Former Member
0 Likes
467

Increate the line-size in the REPORT statement.

REPORT rep LINE-SIZE width.

Increate the width.

Read only

Former Member
0 Likes
467

hi

good

wrong->

concatenate sy-uname '::' sy-mandt '::'

ic_unique_key into key.

right->

concatenate sy-uname sy-mandt

ic_unique_key into key.

thanks

mrutyun^