2008 Feb 11 8:39 AM
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
2008 Feb 11 8:47 AM
Increate the line-size in the REPORT statement.
REPORT rep LINE-SIZE width.
Increate the width.
2008 Feb 11 9:18 AM
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^
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |