Sunday, 13 May 2012

What is the use of editor-call statement of the internal table? | SAP-ABAP

=> The editor-call statement is used to display the contents of an internal table to the user in the editor similar to the ABAP/4 source code folder. It is beneficial for debugging and serves as a simple interface allowing the user to enter and modify data in a tabular form. The following is the syntax for editor-call statement:
Syntax:
 Editor-callfor itab [title t] [disply mode]
Here,
Itab:       It is the name of an internal table.
t:            It denotes a literal, constant, or variable.
title :      It defines the title of the editor call screen
display mode: It is used for only display and changes cannot be made in it.

No comments: