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

abap query question

Former Member
0 Likes
377

Hi,

What is the diffrence beteween Record processing and start of selection events in ABAP query?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
357

Reddy,

When you want to get the output in excel you can work on

START-OF-SELECTION event.

Here extracting the data you have to do.

Where as in

RECORDPROCESSING system will create the inner joins with given tables and move the data to the ALV GRID.Here one by one record will get processed.

Here there is no control on ALV GRID .......

pls. reward if useful

2 REPLIES 2
Read only

Former Member
0 Likes
357

When you add code to 'Record Processing'. The code is added in the main

SELECT

.......

ENDSELECT

statement in the program that is generated.

What you could do is run query. Then open up an SE38 sessions. You will see the program that has been generated.

Read only

Former Member
0 Likes
358

Reddy,

When you want to get the output in excel you can work on

START-OF-SELECTION event.

Here extracting the data you have to do.

Where as in

RECORDPROCESSING system will create the inner joins with given tables and move the data to the ALV GRID.Here one by one record will get processed.

Here there is no control on ALV GRID .......

pls. reward if useful