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

regarding selection screen

Former Member
0 Likes
589

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

jayanthi_jayaraman
Active Contributor
0 Likes
568

Hi,

Try this.

tables mara.

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

5 REPLIES 5
Read only

Former Member
0 Likes
568

u can use variant

Read only

Former Member
0 Likes
568

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".

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
569

Hi,

Try this.

tables mara.

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

Read only

Former Member
0 Likes
568

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

Read only

Former Member
0 Likes
568

Remove the obligatory keyword & try...