SAP DEMO-ABAP Program Execution

来源:互联网 发布:西安赛区网络赛 编辑:程序博客网 时间:2024/05/16 10:16

Defining Processing Blocks

Non-Executable Event Blocks

 

       

Executable Event Blocks

REPORT demo_abap_events_2 .

 

       

Executable Event Blocks

REPORT demo_abap_events_3 .

 

       

Direct Execution

Executing Programs without LDB

REPORT demo_program_read_tables_1 .

 

       

Executing Programs withLDB

REPORT demo_program_read_tables_2.

 

       

INITIALIZATION

REPORT demo_program_initialization .

 

       

START-OF-SELECTION

REPORT demo_program_start_of_selectio.

 

       

GET

REPORT demo_program_get.

 

       

GET...LATE

REPORT demo_program_get_late.

 

       

END-OF-SELECTION

REPORT demo_program_end_of_selection .

 

       

Leaving Event Blocks Using STOP

REPORT demo_program_stop .

 

       

Leaving Event Blocks Using EXIT

REPORT demo_program_exit_1 .

 

       

Leaving Event Blocks Using EXIT

REPORT demo_program_exit_2 .

 

       

Leaving Event Blocks Using CHECK

REPORT demo_program_check_1 .

 

       

Leaving Event Blocks Using CHECK

REPORT demo_program_check_2.

 

  

Leaving Event Blocks with REJECT

REPORT demo_program_reject.

 

       

Dialog-Controlled Program Execution

Demonstration Transcation

*&---------------------------------------------------------------------*

*& Modulpool      SAPMDEMO_TRANSACTION                                 *

*&                                                                     *

*&---------------------------------------------------------------------*

*&                                                                     *

*&   Display DATA of table SPFLI                                       *

*&                                                                     *

*&---------------------------------------------------------------------*

 

* Global Data

INCLUDE mdemo_transactiontop.

 

* PBO Module

INCLUDE mdemo_transactiono01.

 

* PAI Module

INCLUDE mdemo_transactioni01.

       

Demonstration for Screen Sequences

*&---------------------------------------------------------------------*

*& Modulpool         SAPMDEMO_SCREEN_FLOW                              *

*&                                                                     *

*&---------------------------------------------------------------------*

*&                                                                     *

*&   Display and change DATA of table SPFLI                            *

*&                                                                     *

*&---------------------------------------------------------------------*

 

* Globale Daten

INCLUDE MDEMO_SCREEN_FLOWTOP.

 

* PBO-Module

INCLUDE MDEMO_SCREEN_FLOWO01.

 

* PAI-Module

INCLUDE MDEMO_SCREEN_FLOWI01.

 

* Unterroutinen

INCLUDE MDEMO_SCREEN_FLOWF01.

       

Starting programs

Fillling a Selection Screen

REPORT demo_program_submit_sel_screen NO STANDARD PAGE HEADING.

 

       

Affecting Lists

REPORT demo_programm_submit_line NO STANDARD PAGE HEADING.

 

       

Leaving a Program

REPORT demo_programm_leave NO STANDARD PAGE HEADING.

 

       

Transactions

REPORT  demo_program_call_transaction .

 

       

Dialog Modules

REPORT demo_dialog_module.

0 0