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

select option for date

Former Member
0 Likes
359

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
Read only

JozsefSzikszai
Active Contributor
0 Likes
322

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

Read only

Former Member
0 Likes
322

ok