Application Development 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: 

select option for date

Former Member
0 Kudos

i want give default values in select option for date (for a period)

I used

SELECT-OPTIONS y_s_mnth FOR y_v_dt_month default first to last OPTION BT.

first and last are dates.

I am getting error dialog box....specify ranges...

2 REPLIES 2

JozsefSzikszai
Active Contributor
0 Kudos

hi Suhas,

do like:

INITIALIZATION.

y_s_mnth-sign = 'I'.

y_s_mnth-option = 'EQ'.

y_s_mnth-low = <i>first_day</i>

y_s_mnth-high = <i>last_day</i>

APPEND y_s_mnth.

hope this helps

ec

Former Member
0 Kudos

ok