« 上一篇 | 下一篇»

CHECK,EXIT,STOP etc...

Check
If the check statement appears in a LOOP process block, the unfufilled condition check will stop processing rest codes and do next loop.
If the check statement appears in a EVENT block, the unfufilled condition check will stop current event process and jump to next evetn.

EXITIf you use the EXIT statement within an event block but not in a loop, the system stops processing the block immediately.If the EXIT statement occurs in a loop using DO, WHILE, or LOOP, it is the loop that terminates, not the processing block.

STOP
If you use the STOP statement within an event block, 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 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.

RETURN
If the return occurs in a subroutine, the system will jump out the subroutine processing. If the return occurs in event block processing, system will stop the program directly.
e.g.
START-OF-SELECTION.
PERFORM frm_test.
return.
WRITE / 'start of selection'.

END-OF-SELECTION.
WRITE / 'end of selection'.
*&---------------------------------------------------------------------*
*& Form frm_test
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
FORM frm_test.
DO 5 TIMES.
IF sy-index = 2.
RETURN.
WRITE 'IF STATEMENT'.
ENDIF.
WRITE: 'DO', sy-index.
ENDDO.
WRITE / 'END'.
ENDFORM. "frm_test


(1) 评论    (62) 引用   

Total 1 Comments on "CHECK,EXIT,STOP etc..."

  1. lacewigs said: good job

    12/07/2010, at 02:52 [ 回复 ]

    Sexy Sexy Lingerie is an online lingerie store selling designer lingerie including Shirley of Hollywood, Dreamgirl and Hustle
    Sexy Costumes
    sexy nurses costume
    sexy Sports costume
    Vinyl Lingerie
    lingerie sale

发表评论

称呼 (required)

标题

个人主页(可选)

邮箱地址(可选)

Auth Image