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

selection screen

Former Member
0 Likes
288

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

Former Member
0 Likes
267

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

Former Member
0 Likes
268

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

Read only

Former Member
0 Likes
267

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