‎2008 May 14 2:27 AM
‎2008 May 14 4:28 AM
Hi,
select-options: s_date for sy-datum.
data: begin of itab occurs 0,
date like sy-datum,
end of itab.
at selection-screen.
if not s_date[] is initial.
loop at s_date.
itab-date = s_date-low.
append itab.
endloop.
endif.
now use the internal table itab for further process.