When do we use End-of-selection?

Questions by b_kamepalli

Showing Answers 1 - 4 of 4 Answers

Diwakar

  • Jul 15th, 2006
 

End-of-selection event are mostly used when we are writing HR-ABAP code. In the HR-ABAP code, data is retrived in the Start-of-selection event and Printing on the list and all will be done in End-of-selection event.

But in Normal ABAP, mostly we wont use this event.

Thank you.

  Was this answer useful?  Yes

Senthil Kumar

  • Jan 19th, 2007
 

When ever a LDB is used for getting the values we use End-of-Selection, till the internal table is filled with all data, the flow will not go to End-of-Selection.

  Was this answer useful?  Yes

end_of_selection is the last event of the list and it is triggered after geting all the data for the database. the end_of _selection event is used for taking appropriate actions the programmer wants to take before the list is displayed. its mainly used to formatt the data before displaying. 

  Was this answer useful?  Yes

greatvissu

  • Jan 24th, 2009
 

1 . End of selection is Mostly used in HR-ABAP for displaying the final internal table data as we used get statement in start-of-selection and here all the data is collected as the logical data base process record by record.


2. In Classical genaral reporting the END-OF-SELECTION is used when you want print some thing at the end of list , we will write here. END-OF-PAGE event will trigger for each page so if we want to write only at las after printing all pages we will go for END-OF-SELECTION.

3. To free up all the memory used for internal tables, we do it in END-OF-SELECTION.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions