How to use editor-call statement
Saturday, July 5th, 2008The editor-call statement displays the contents of an internal table to the user in an editor similar to the ABAP/4 source code editor. It is useful for debugging and as a simple interface for allowing the user to enter and modify data in tabular form.
Syntax for the editor-call Statement
The following is the syntax for the editor-call statement.
editor-call for it [title t] [display mode]
where:
- it is the name of an internal table.
- t is a literal, constant, or variable.
The following points apply:
- it can only contain type c components.
- The maximum length for a row is 72 characters.
- t is the text displayed in the title bar of the editor window.
The display mode addition causes the data to be displayed in the editor in display mode. The user will be able to search and scroll, but will not be able to change the contents. (more…)
Popularity: 6% [?]
