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

events

Former Member
0 Likes
712

hi expects,

If we will display the data by writing write statement on start of selection then what is the need of end-of- selection in classical report.

thank you

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
694

Hi Rohit,

In this case there is no need of End-of-selection, only it is useful in the LDB's.

Hope this resolves your query.

Reward all the helpful answers.

Regards

hi expects,

If we will display the data by writing write statement on start of selection then what is the need of end-of- selection in classical report.

thank you

7 REPLIES 7
Read only

Former Member
0 Likes
695

Hi Rohit,

In this case there is no need of End-of-selection, only it is useful in the LDB's.

Hope this resolves your query.

Reward all the helpful answers.

Regards

Read only

Former Member
0 Likes
694

end of selection only signifigant if you are using STOP command in your prog. if stop command executed it will directly go to end-of-selection from any event...

regards

shiba dutta

Read only

Former Member
0 Likes
694

HI,

This is the last of the events called by the runtime environment to occur. It is triggered after all of the data has been read from the logical database, and before the list processor is started. You can use the corresponding event block to process and format the data that the program has stored in internal tables or extracts during the various GET events.

regards,

bharat.

Read only

Former Member
0 Likes
694

Hi Rohit ,

1)The END-OF-SELECTION event is triggered once the logical database has finished reading all data and before the list processor is started.You can use the corresponding event block to process and format the data that the program has stored in internal tables or extracts during the various GET events.

2)This is the event triggered after the data is selected/manipulated. That way this event will be used for outputting data.

In normal reports, this event is of no use.

Regards,

Siddhi.

Read only

0 Likes
694

hello,

By usin end-of-selection we can free the unwanted memory after getting selection.

thanx.

Read only

Former Member
0 Likes
694

Hi Rohit!

If we write STOP in INITIALIZATION event, control goes to

END-OF-SELECTION,not to START-OF-SELECTION.

Reward points if it helps.

Regards,

Neha Bansal.

Read only

Former Member
0 Likes
694

Hi ,

All the events are having particular purpose , Start-of-selection for accessing database and end-of-selection for writing on screen .

As a good practice, your code should be according to this events .

So that the control goes to all the ABAP events in sequence, and hence none of the event is skipped .

Thanks .