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
129

hi ,

i am new in ABAP .

any one can explain me the use of editor call with code example.

thanks and regards,

navneeth

1 ACCEPTED SOLUTION

Former Member
0 Kudos
97

Hi,

it displays ur itab so u can edit and save......

Its obselete so avoid using it ........

DATA : BEGIN OF itab1 OCCURS 0,
       fld3  TYPE char8,
       fld5  TYPE char8,
       fld1  TYPE char8,
       fld2  TYPE char8,
       fld4  TYPE char8,
       END   OF itab1.

itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.

EDITOR-CALL FOR itab1.

Cheers,

jose.

1 REPLY 1

Former Member
0 Kudos
98

Hi,

it displays ur itab so u can edit and save......

Its obselete so avoid using it ........

DATA : BEGIN OF itab1 OCCURS 0,
       fld3  TYPE char8,
       fld5  TYPE char8,
       fld1  TYPE char8,
       fld2  TYPE char8,
       fld4  TYPE char8,
       END   OF itab1.

itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.
itab1-fld1 = ' 10'.
itab1-fld2 = ' 900'.
itab1-fld3 = ' apple'.
itab1-fld4 = '  14 '.
itab1-fld5 = ' 1'.
APPEND itab1.

EDITOR-CALL FOR itab1.

Cheers,

jose.