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

enhance select statements

Former Member
0 Likes
486

Hi all,

I have added 2 select options in the selection screen of standard report using implicit enhancements. Now I have to change the select statement to restrict the data according to these two select options also. How can I change that statement now? Please help.

3 REPLIES 3
Read only

Former Member
0 Likes
461

Hi Jayasri,

Check out this link.

Hope it helps.

[https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822]

Regards,

Raj

Read only

0 Likes
461

hi raj,

actually my select statement in the standard is not dynamic. So, I want to comment that statement and I want to create my own select statement .Can I do this using enhancements?

Read only

Former Member
0 Likes
461

Check out this sample code.

select-options:b_date for ekko-aedat,

c_date for ekko-aedat.

data:begin of ekko,

ebeln like ekko-ebeln,

end of ekko,

t_ekko like ekko occurs 0.

Select ebeln

from ekko

into table t_ekko

where aedat in b_date

amd aedat in c_date.

Regards,

Raj