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: 

selection screen

Former Member
0 Kudos

Hi,

I have a mandatory field,and its now allowing to go to the multiple entry option with this field blank, if this field has data, its allowing multiple entry option .

is there any way to have this mandatory field blank and allow multiple entry option.

Thanks

Jog

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Make the field mandatory only if the user press F8..

AT SELECTION-SCREEN.

IF SY-UCOMM = 'ONLI' AND P_PAR IS INITIAL.

MESSAGE E000 WITH 'Mandatory'.

ENDIF.

THanks

Naren

2 REPLIES 2

Former Member
0 Kudos

Hi,

Make the field mandatory only if the user press F8..

AT SELECTION-SCREEN.

IF SY-UCOMM = 'ONLI' AND P_PAR IS INITIAL.

MESSAGE E000 WITH 'Mandatory'.

ENDIF.

THanks

Naren

Former Member
0 Kudos

HI,

as per i understand...

u have a mandatory field.. and if it is blank it is not allowing to multiple selection for this field. and if it has data then its allowing..

can u paste ur present code for this so we can help u more..

regards