2006 Dec 08 3:45 PM
In selection-screen : s_bedat(select options)
I am intrested to display the data according to the user input means
only displayed data should be within the between s_date-low and s_high-high.
how to do it?
Any solution ,kindly send .
In selection-screen : s_bedat(select options)
I am intrested to display the data according to the user input means
only displayed data should be within the between s_date-low and s_high-high.
how to do it?
Any solution ,kindly send .
2006 Dec 08 3:47 PM
Hi,
Have NO EXTENSION..
Example..
SELECT-OPTIONS: S_BEDAT FOR SY-DATUM NO EXTENSION.
Thanks,
Naren
2006 Dec 08 3:48 PM
2006 Dec 08 3:53 PM
if not s_bedat[] is initial.
select * from ztable into table itab where bedat in s_bedat.
endif.
2006 Dec 08 3:55 PM
Hi,
Try this code.
Select-options: s_bedat for sy-datum.
select * into table int_tab
from DBtable
where bedat in s_bedat.
It will give ur required o/p.
Hope it helps u.
Regards,
Kumar
Message was edited by:
kumar kk
2006 Dec 08 5:09 PM
Hi ,
SELECT-OPTIONS: S_BEDAT FOR SY-DATUM .
select bedat from dbtable into corresponding fields of table itab where bedat ge s_bedat-low and bedat le s_bedat-high .
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |