Skip to Content
0
Former Member
Jul 04, 2009 at 12:27 PM

EXIT statement

28 Views

hi

what happens in the following scenarios

form a

perform b

statement1

statement 2

endform

form b

if sy-subrc eq 0

exit

endif.

endform

will it exit from form b or form a also?

in the above case if the form b is like this

form b

select statement

check sysubrc eq 0.

statemnet1

statement2

endform.

what happens now?