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

ABAP Editor screen

Former Member
0 Likes
1,615

Hi all

how to increase the ABAP Editor screen column size.In one server it is 94 the column size and in the other it is 74.so, theres a difficulty in copying program from one server to the other.please suggest.

8 REPLIES 8
Read only

Former Member
0 Likes
1,120

I guess screen resolutions differ from the 2 systems,

make sure that both are same

Read only

Former Member
0 Likes
1,120

Hi,

goto abap editor.utilities->settings.

there u can change.

rgds,

bharat.

Read only

Former Member
0 Likes
1,120

thasnks bharat

Read only

Former Member
0 Likes
1,120

Hi,

you can use line size to change the width of your screen. the syntax is:

[LINE-SIZE width]

[LINE-COUNT page_lines[(footer_lines)]] ... .

for example:

REPORT z_myreport LINE-COUNT 65(8) LINE-SIZE 132.

here line-size is 132. by using this clause you can get the desired width of your abap editor.

Read only

Former Member
0 Likes
1,120

Hi,

you can use line size to change the width of your screen. the syntax is:

[LINE-SIZE width]

[LINE-COUNT page_lines[(footer_lines)]] ... .

for example:

REPORT z_myreport LINE-COUNT 65(8) LINE-SIZE 132.

here line-size is 132. by using this clause you can get the desired width of your abap editor.

reward points for all correct answers.

regards

vivek

Read only

Former Member
0 Likes
1,120

Hi,

you can use line size to change the width of your screen. the syntax is:

[LINE-SIZE width]

[LINE-COUNT page_lines[(footer_lines)]] ... .

for example:

REPORT z_myreport LINE-COUNT 65(8) LINE-SIZE 132.

here line-size is 132. by using this clause you can get the desired width of your abap editor.

reward points for all correct answers.

regards

vivek

Read only

Former Member
0 Likes
1,120

hi all

the program is copied from one server to the other.so theres no point in adding the LINE-SIZE to the REPORT.any other idea?

Read only

Former Member
0 Likes
1,120

Hi,

1. GOTO ABAP EDITOR ( SE80 / SE38 ).

2. GOTO UTILITIES MENU.

3. SELECT SETTINGS OPTION AND DO UR CHANGES HERE.

THANKS