‎2007 Mar 09 8:44 AM
Hi,
What is the diffrence beteween Record processing and start of selection events in ABAP query?
‎2007 Mar 09 8:53 AM
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
‎2007 Mar 09 8:48 AM
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.
‎2007 Mar 09 8:53 AM
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