Application Development and Automation 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: 
Read only

please clarify this doubt on basics

Former Member
0 Likes
378

Hi,

i want to know the flow among the events used in ABAP.

please tell me the flow among following events.

INITIALIZATION

START-OF-SELECTION.

END-OF-SELECTION.

AT SELECTION-SCREEN OUTPUT.

AT SELECTION-SCREEN ON <FIELD>.

AT SELECTION-SCREEN.

END-OF-SELECTION.

TOP-OF-PAGE.

END-OF-PAGE.

1 ACCEPTED SOLUTION
Read only

former_member188829
Active Contributor
0 Likes
361

Hi,

Initialization : triggered when the report is loaded in memory.

At selection-screen output : triggered when the selection screen is loaded in memory before being displayed.

At selection-screen / <field> : before leaving the selection screen.

start-of-selection : the first event for displaying the report.

end-of-selection : after the start-of-selection is completed.

classiscal report events.

top-of-page : every time a new page is started in the list.

end-of-page : every time the list data reaches the footer region of the page.

interactive report events.

top of page during line selection : top of page event for secondary list.

at line-selection : evey time user dbl-clicks(F2) on the list data.

at pF<key> : function key from F5 to F12 to perform interactive action on the list.

3 REPLIES 3
Read only

former_member188829
Active Contributor
0 Likes
362

Hi,

Initialization : triggered when the report is loaded in memory.

At selection-screen output : triggered when the selection screen is loaded in memory before being displayed.

At selection-screen / <field> : before leaving the selection screen.

start-of-selection : the first event for displaying the report.

end-of-selection : after the start-of-selection is completed.

classiscal report events.

top-of-page : every time a new page is started in the list.

end-of-page : every time the list data reaches the footer region of the page.

interactive report events.

top of page during line selection : top of page event for secondary list.

at line-selection : evey time user dbl-clicks(F2) on the list data.

at pF<key> : function key from F5 to F12 to perform interactive action on the list.

Read only

Former Member
0 Likes
361

Hi,

The flow of the events in ABAP program are as below :


INITIALIZATION
AT SELECTION-SCREEN ON <FIELD>.
AT SELECTION-SCREEN OUTPUT.
AT SELECTION-SCREEN.
START-OF-SELECTION.
END-OF-SELECTION.
END-OF-SELECTION.

TOP-OF-PAGE. "Page Events triggers for every page
END-OF-PAGE. "Page Events  triggers for every page

Thanks,

Sriram Ponna.

Read only

Former Member
0 Likes
361

INITIALIZATION

AT SELECTION-SCREEN OUTPUT.

AT SELECTION-SCREEN ON <FIELD>.

AT SELECTION-SCREEN.

START-OF-SELECTION.

END-OF-SELECTION.

TOP-OF-PAGE.

END-OF-PAGE.