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 processing

Former Member
0 Kudos
741

Dear all,

I've got a selection screen with two select-options fields for which I would like to make a check:

If field 1 and field 2 are empty then triggering an Error message.

For this I thought to use the "at selection-screen block" combined with

if field 1 and field 2 is initial.

message...

endif.

But in that case, I can not use any more the multiple selection button (at the right of the field) becase I have my event "at selection-screen block" triggered with the error message.

I tried to declare my message after the start of selection but then I have a new empty screen with my error message on the bottom of it.

How to deal with that?

Regards.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Kudos
687

Hi

AT SELECTION-SCREEN.

if sy-ucomm = 'ONLI'. "Only when you execute the program

if field1 is initial....Your condition for giving error.

endif.

Regards

Navneet

11 REPLIES 11
Read only

Former Member
0 Kudos
687

perform ur validation in <b>AT SELECTION-SCREEN</b> event instead of <b>AT SELECTION-SCREEN block</b>

Read only

0 Kudos
687

I've tried that but it is the same:

Error message triggered when I try to use the multiple selection.

Regards.

Read only

Former Member
0 Kudos
687

HI

you can put OBLIGATORY key word for that two selection screen fields

then that field will show error untill u enter the value in it

REPORT ZNNR_REPORT NO STANDARD PAGE HEADING MESSAGE-ID ZNNR LINE-SIZE 100 LINE-COUNT 65(4).

******DATA DECLARATIONS**********

DATA : BEGIN OF IT_PLANT OCCURS 0,

MATNR LIKE MARA-MATNR,

WERKS LIKE MARC-WERKS,

PSTAT LIKE MARC-PSTAT,

EKGRP LIKE MARC-EKGRP,

END OF IT_PLANT.

DATA : BEGIN OF IT_PONO OCCURS 0,

EBELN LIKE EKKO-EBELN,

EBELP LIKE EKPO-EBELP,

MATNR LIKE EKPO-MATNR,

WERKS LIKE EKPO-WERKS,

LGORT LIKE EKPO-LGORT,

END OF IT_PONO.

TABLES EKKO.

********END OF DATA DECLARATIONS*********

********SELECTION SCREEN DESIGN ***********

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.

PARAMETER : P_WERKS LIKE MARC-WERKS OBLIGATORY MODIF ID S1.

SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN OBLIGATORY NO INTERVALS MODIF ID S2.

SELECTION-SCREEN END OF BLOCK B1.

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X'.

SELECTION-SCREEN COMMENT 5(20) TEXT-002 FOR FIELD R1.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : R2 RADIOBUTTON GROUP G1.

SELECTION-SCREEN COMMENT 5(20) TEXT-003 FOR FIELD R2.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B2.

******END OF SELECTION SCREEN DESIGN****************

*********INITIALIZATION OF SELECTION SCREEN ELEMENTS.*****

INITIALIZATION.

P_WERKS = '1000'.

S_EBELN-LOW = '4500016926'.

S_EBELN-OPTION = 'EQ'.

S_EBELN-SIGN = 'I'.

APPEND S_EBELN.

CLEAR S_EBELN.

************END OF INITIALIZATION***********************

***********SCREEN MODIFICATIONS*******************

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF R1 EQ 'X' AND SCREEN-GROUP1 EQ 'S2'.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

IF R2 EQ 'X' AND SCREEN-GROUP1 EQ 'S1'.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

********END OF SCREEN MODIFICATIONS*****************

***************SCREEN VALIDATIONS *****************

at selection-screen.

SELECT SINGLE *

FROM EKKO

INTO EKKO

WHERE EBELN IN S_EBELN.

IF SY-SUBRC <> 0.

SET CURSOR FIELD 'S_EBELN-LOW'.

MESSAGE E999 WITH TEXT-005.

ENDIF.

********end of screen validation*****************

<b>Rewar dif usefull</b>

Read only

0 Kudos
687

Hi,

Yes of course.

But the thing is that there is some condition for the OBLIGATORY:

If field 1 empty then only field 2 obligatory and if field 2 empty then only field 1 obligatory.

Regards.

Read only

Former Member
0 Kudos
687

at selection-screen.

if field1 is initial and field2 is initial.

message e000 with 'Please enter either of the values'.

endif.

Read only

0 Kudos
687

Thanks but then I can not use any more the multiple selection function.

Regards.

Read only

0 Kudos
687

hi,

instead of showing ur message as an ERROR MSG (TYPE E)

show it as information msg (type i) or sucess msg (type S)

and use STOP command immediately after it so that it remains on the selection screen only

Read only

varma_narayana
Active Contributor
0 Kudos
687

Hi

this Validation and Error Message must be done in the Event AT SELECTION-SCREEN.

Then it solves ur problem.

REWARD IF HELPFUL.

Read only

Former Member
0 Kudos
688

Hi

AT SELECTION-SCREEN.

if sy-ucomm = 'ONLI'. "Only when you execute the program

if field1 is initial....Your condition for giving error.

endif.

Regards

Navneet

Read only

0 Kudos
687

Hi thanks.

It solved the prob.

Best regards.

Read only

Former Member
0 Kudos
687

Hi nozome

didnt get your point clearly ... what you mean by multiple selection..

are you talking about Select-Options.