‎2008 Dec 02 11:29 AM
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.
‎2008 Dec 02 11:37 AM
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
‎2008 Dec 02 11:58 AM
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?
‎2008 Dec 02 11:58 AM
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