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: 

regarding selection screen

Former Member
0 Kudos

hi gurus,

gd mrng.

i have a scenario like this i made selection screen obligatory with the help of this statement <b>'select-options:s_matnr for mara-matnr obligatory'</b>.

without entering the lower limit value if i select multiples selection then it displays a message <b>'Make an entry in all required fields'</b> what i want that without entering lower limit value i will enter the values in the multiple selections for this what sud i add ,plz let me know.

1 ACCEPTED SOLUTION

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Try this.

tables mara.

select-options:s_matnr for mara-matnr default '0' obligatory.

5 REPLIES 5

Former Member
0 Kudos

u can use variant

Former Member
0 Kudos

The keyword "Obligatory" will not allow you to leave the field(low) empty. That is it natural behaviour.

If you don't want...Create a variant and use that....

go to se38...

give your program name..

select "variant" radio button...

press "Create".

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Try this.

tables mara.

select-options:s_matnr for mara-matnr default '0' obligatory.

Former Member
0 Kudos

Hi

Remove Obligatory and check:

Handle the Matnr inital value in At SELECTION-SCREEN event .

IF so_matnr[] IS INITIAl .

Message Error.

ENDIF.

hope this Helps.

Praveen

Former Member
0 Kudos

Remove the obligatory keyword & try...