Application Development 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: 

editor-call

Former Member
0 Kudos

what is the function of editor call

3 REPLIES 3

Former Member
0 Kudos

EDITOR-CALL FOR REPORT prog.

Reads the program prog from the library and places it in the ABAP Editor. When you save (with F11), the program is written back to the library. Before EDITOR-CALL_FOR_REPORT is called, you must carry out appropriate authorization and system checks.

EDITOR-CALL FOR itab.

Displays the internal table itab in an editor similiar to the ABAP Editor. You can then use normal editor functions to make changes.

Changes to the table contents are only adopted if you save before leaving the editor.

The Return Code is set as follows:

SY-SUBRC = 0:

Changes were made during the session. These have been saved.

SY-SUBRC = 2:

No changes were made during the session. The table was saved anyway.

SY-SUBRC = 4:

The table was not saved.

The internal table itab must have the table type STANDARD TABLE, and can contain only type C components.

The lines of the internal table can be up to 72 characters long.

Awrd Points If useful

Bhupal

Former Member
0 Kudos

Hi srinath,

Editor call statement is used to display the contents of an internal table.

Regards,

swetha.

Former Member
0 Kudos

hi,

it is used to display the contents of internal table

rgds

umakanth