‎2007 Apr 19 6:07 AM
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.
‎2007 Apr 19 6:09 AM
I guess screen resolutions differ from the 2 systems,
make sure that both are same
‎2007 Apr 19 6:10 AM
Hi,
goto abap editor.utilities->settings.
there u can change.
rgds,
bharat.
‎2007 Apr 19 6:12 AM
‎2007 Apr 19 6:14 AM
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.
‎2007 Apr 19 6:15 AM
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
‎2007 Apr 19 6:16 AM
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
‎2007 Apr 19 6:24 AM
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?
‎2007 Apr 19 6:49 AM
Hi,
1. GOTO ABAP EDITOR ( SE80 / SE38 ).
2. GOTO UTILITIES MENU.
3. SELECT SETTINGS OPTION AND DO UR CHANGES HERE.
THANKS