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: 

Which of the following is not a EXIT command

Former Member
0 Kudos
508

1. Which of the following is not a EXIT command

A STOP B EXIT C BACK D CANCEL

1 ACCEPTED SOLUTION

Former Member
0 Kudos
107

Exit,Back & cancel comes under Exit command functional type.

Stop is not a exit command functional type.

4 REPLIES 4

Former Member
0 Kudos
107

Hi

EXIT exits from every kind of loop end routine (form, function module, method....), STOP exits from the event of a report.

BACK and CANCEL are not ABAP exit command.

Max

Former Member
0 Kudos
108

Exit,Back & cancel comes under Exit command functional type.

Stop is not a exit command functional type.

former_member583013
Active Contributor
0 Kudos
107

BACK and CANCEL are program Exit command....They are used on the ABAP Menu....

STOP and EXIT are report Exit command....Used in LOOP, FM and so...

Greetings,

Blag.

Former Member
0 Kudos
107

Hi,

<b>STOP :</b> It ends the current processing block and END-OF-SELECTION is triggered. It can be used only in AT SELECTION-SCREEN, START-OF-SELECTION and GET. It can be used only in an executable program.

<b>EXIT :</b> It ends the current processing block and END-OF-SELECTION is NOT triggered if written outside LOOP. If written inside LOOP then it will come out of LOOP.

<b>BACK</b> and <b>CANCEL</b> are not valid ABAP commands.

Reward points if the answer is helpful.

Regards,

Mukul

Message was edited by:

Mukul R. Kulkarni