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

SAP-ABAP

Former Member
0 Likes
612

In which events we can able to write the select statement apart from start of selection?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
586

Hi,

We can write the SELECT statement at event <b>end-of-selection.</b> or <b>end-of-page</b>. or <b>top-of-page</b>.

However , it will be always advisable that we should write all processing block i.e. SELECT statement in STRAT-OF-SELCTION.

Thanks,

Pramod

4 REPLIES 4
Read only

Former Member
0 Likes
586

You can write in any event.

It doesn't make sense to use WRITE statements on SELECTION SCREENS.

Regards,

Ravi

Read only

0 Likes
586

Hai ravi,

thanks.

But i am not clear abt this.

Can we write select statement in TOP-OF-PAGE,END-OF-PAGE,

END-OF-SELECTION.....

Read only

0 Likes
586

Technically the system will not stop you from writing a SELECT statement in any of the events you have specified. But it does not make sense, that's about it.

Its a matter of seggregating your logic.

Regards,

Ravi

Message was edited by: Ravikumar Allampallam

Read only

Former Member
0 Likes
587

Hi,

We can write the SELECT statement at event <b>end-of-selection.</b> or <b>end-of-page</b>. or <b>top-of-page</b>.

However , it will be always advisable that we should write all processing block i.e. SELECT statement in STRAT-OF-SELCTION.

Thanks,

Pramod