The following header commands are available in R/2 mode.
Command |
Explanation |
A(TTACH) n |
Display the text from line n in the topmost row. |
B(OTTOM) |
Go to the last page. |
T(OP) |
Go to the first page. |
+ |
Go to the next page. |
- |
Go to the previous page. |
FIND c |
Find the character string c on the current cursor position. If the character string contains blanks or special characters, you must enclose it within special characters not contained in the string itself. Example: FIND /empty- / The command does not distinguish between upper and lower case. |
N(EXT) |
Find and go to the last search string that was specified, starting from the current cursor position. |
R(EPLACE) c1 c2 |
Replace string c1 with string c2 in the entire text. Replace the character string c1 by the character string c2 in the entire text. c1 and c2 can have different lengths. If one of the character strings contains blanks or special characters, you must enclose c1 and c2 in special characters (see FIND). Example: R /empty- /blanks/ |
F(ETCH) prog |
Fetch/read in the program.prog ;the command releases the current program first. |
S(AVE) |
Store the Editor contents temporarily in a cache; they remain there even if you leave the Editor. To return the text from intermediate storage to the Editor, either select the Editor or use the FETCH command. The UPDATE command deletes any text in intermediate storage. If a crash occurs during the Editor session, the Editor contents are often recovered in intermediate storage. |
RES(TORE) |
Restore text from the cache to the Editor;overwrites any previous Editor contents. |
RES(TORE) ACTIVE |
Restore the active version from the database file to the Editor;overwrites any previous Editor contents. |
SAVEAS prog |
Save the Editor contents under the different name prog ;the previous name (for the Editor contents) remains unchanged. |
U(PDATE) |
Save the Editor contents (inapplicable in display mode). |
CHECK |
Check the syntax of the program in the Editor for errors. |
PCF(ETCH) |
Upload for a file on the presentation server. |
PC(DOWN) |
Download the Editor contents to the presentation server. |
HELP word |
Display the documentation for the ABAP keyword (for further information, enter HELP HELP). |
I(NSERT) n |
Add n new lines at the end of the text. |
IC word |
Insert the structure of the ABAP statement at the current cursor position. This is effective for the statements CASE, DO, FORM, IF, LOOP, MESSAGE, MODULE, SELECT, SHIFT, SORT, TRANSFER, WHILE and WINDOW. |
IC FUNCTION func |
Insert the structure of a CALL FUNCTION statement for the function module func (generic names are also allowed). |
IC SELECT tab |
Insert the structure of a SELECT statement for the pooled table/data base table tab. Before the statement is inserted, another screen appears, from which you can select the required table fields. |
IC |
Insert at cursor position. |
*f |
FORM comment block. |
*m |
MODULE comment block. |
*.* |
Comment line *....Text...........* |
*-* |
Comment line *-------------------* |
*-*1 |
Comment block with blank line. |
** |
Comment line ********************* |
**n |
Comment block with n blank lines (1 <= n <= 5). |
PP |
Format program text ("Pretty Print") without including includes; no update takes place. |
|
Print Editor contents; subsequently requires you to enter print parameters. | |
RENUM(BER) |
Renumber lines. |
SHOW tab |
Display the fields of the DB/pooled table tab. |
SHOW FUNCTION func |
Display the function module func (generic names also allowed). |