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-options

Former Member
0 Kudos

Hi All,

If I have selection screen variable as 'SERDAT'. How should I get starting and ending values of ERDAT. Is it somthing like SERDAT_LOW and SERDAT_HIGH.

Thanks

Veni.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

SERDAT-LOW indicates starting value and SERDAT-HIGH indicate ending value.

Nilesh

3 REPLIES 3

Former Member
0 Kudos

SERDAT-LOW indicates starting value and SERDAT-HIGH indicate ending value.

Nilesh

Former Member
0 Kudos

Hi Veni,

Try SERDAT-LOW and SERDAT-HIGH.

Hope it helps.

Regards,

Gilberto Li

Former Member
0 Kudos

Hi Veni

Select option SERDAT will be handled as a internal table in SAP. At run time (debugging mode) you can see the structure of the SERDAT internal table. SERDAT table has 4 fields SIGN, OPTION, LOW and HIGH.

SERDAT-LOW is the lower limit assignment of date.

SERDAT-HIGH is the higher limit assignment of date.

You can use this select-option in SQL queries with IN operator. SQL query with this condition check will fetch all the records between specified date range given in select-option.

Bala