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: 

about selection-screen

Former Member
0 Kudos

Hi all

I have a problem with the selection screen . I have created a selection-screen with tabed block . in the tabed block , it contains two tabs . in each tab , I want to fill the obligatory fields . However , in the first tab , I fill all the obligatory fields , and then I execute the programs , it doesn't show me any messages about the second tab which contains also obligatory fields. <b>Q: when I fill the obligatory fields in the first tab and I forget to fill the ones in the second tab , it will show me some informations and let me go back to fill in them .</b> so how to solve it

Thank you

Nick

1 REPLY 1

naimesh_patel
Active Contributor
0 Kudos

You can check your obligatory fields in the start of selection to have more flexiblity to move between tabs.

You must have experienced this problem with the obligatory fields. You must fill the obligatory fields of the first tab than you can move onto second one.

To avoid this you can check them in the start-of-selection.

START-OF-SELECTION.
  IF FILED1 IS INITIAL 
  OR FIELD2 IS INITIAL
  OR FIELD4 IS INITIAL
      MESSAGE S398(00) WITH 'Please enter Field 1, field 2 field3'.
      STOP.
  ENDIF.

Regards,

Naimesh Patel