What is a difference between - RETURN, EXIT, CHECK, STOP &
REJECT - To leave the processing blocks
Answers were Sorted based on User's Feedback
Answer / ravikumar
STOP: This terminates the block and executes end-of selection.
EXIT: It terminates the loop processing and process the next
statements.
CHECK: It evaluates the subsequent logical expression if it
is true the processing continue with the next statement.
CONTINUE terminates the current loop pass, returns the
processing to the beginning of the loop and starts the next
loop pass,
REJECT: it terminates the current event, even from loops or
subroutines.
Is This Answer Correct ? | 16 Yes | 5 No |
Answer / herry
TOP
If you use the STOP statement within an event block, the
system stops processing the block immediately. The ABAP
runtime environment triggers the next event.
Before and during selection screen processing, the next
event in the prescribed sequence is always called. From the
AT SELECTION-SCREEN event onwards, the system always jumps
from a STOP statement directly to the END-OF-SELECTION
statement. Once the corresponding event block has been
processed, the system displays the list.
EXIT
If you use the EXIT statement within an event block but not
in a loop, the system stops processing the block immediately.
Before and during selection screen processing, the next
event in the prescribed sequence is always called. From the
START-OF-SELECTION event onwards, the system starts the list
processor directly when the EXIT statement occurs, and
displays the list.
If the EXIT statement occurs in a loop using DO, WHILE, or
LOOP, it is the loop that terminates, not the processing block.
CHECK : if the statement fails then skips the current loop
pass. But it doesnot exit the loop.
CONTINUE : skips the current loop pass. But it doesnot exit
the loop.
Is This Answer Correct ? | 0 Yes | 0 No |
What is primary index?
when is the POV AND POH event used?
what r the main events that r used in alv?
3 Answers Bristle Cone, Cap Gemini, HP, Satyam, Wipro,
create a Report to print Stock & Valuated Stock for Plant (ALV Grid) Selection Screen Ranges: Material Number (MARA-MATNR) Material Type (MARA-MTART) Valuation Class (MBEW-BKLAS) Storage Location (MARD-LGORT) Parameter filed plant (MARD-WERKS) Selection condition: Total valuated stock – MBEW-LBKUM – should be greater than zero Table to be used MAKT,MARD,MBEW,MARA,T001L.. (Use inner joins) Display output: Storage location: (TOO1L-LGORT) Description (T001L-LGOBE) Material No (MARA-MATNR), Material Description (MAKT- MAKTX), Total valuated stock (MBEW-LBKUM), Val of tot valuated stock (MBEW-SALK3), IF MBEW-VPRSV = 'S'. Price – MBEW-STPRS ELSEIF DTAB-VPRSV = 'V'. Price – MBEW-VERPR. ENDIF. Subtotal of Total valuated stock (MBEW-LBKUM), Val of tot valuated stock (MBEW-SALK3), Grand Total of Total valuated stock (MBEW-LBKUM), Val of tot valuated stock (MBEW-SALK3), In the ALV grid display keep a button in the tool bar which on clicking navigates through the screen to the next grid which displays the grand total. Use SET PF_STATUS which is in the FM reuse_alv_grid_display to set the button.
Can we call reports and transactions from interactive reporting lists?
Events that can be used in both the classical and interactive reports
what is the difference between user-exit & customer-exit?
4 Answers Cap Gemini, IBM, ITC Infotech, LGB, NTT Data, Sony, TCS, Tech Mahindra,
What happens if we use leave to list-processing without using suppress-dialog?
why SAP scripts and smartforms are used
What are the 3 types of tables in sap? : abap data dictionary
BDC program to migrate data to SAP R/3 database. The data will be uploaded using transaction ME11. (Session Method) plz mention the detail coding Tahnks, Rahul
hi this is ramu.my question is :set-screen,call-screen and leave screen differences and when we use those statement while implimenting code.please help me .iam in trails now..