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

select options

Former Member
0 Likes
551

Hi,

How to put in selection options that by defalult the system gives all data not equal to 'X'?

Br

saso

1 ACCEPTED SOLUTION
Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
522

Hi,

Refer like:-


SELECT-OPTIONS : s_matnr for mara-matnr.

AT SELECTION-SCREEN OUTPUT.
  s_matnr-low = '11'.
  s_matnr-sign = 'E'.
  s_matnr-option = 'EQ'.
  APPEND s_matnr.
  CLEAR s_matnr.

Hope this helps you.

Regards,

Tarun

4 REPLIES 4
Read only

Former Member
0 Likes
522

Hi,

Did you want this?


s_data-sign = 'E'. "Exclude
s_data-option = 'EQ'.
s_data-low = 'X'.
s_data-high = ' '.

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
523

Hi,

Refer like:-


SELECT-OPTIONS : s_matnr for mara-matnr.

AT SELECTION-SCREEN OUTPUT.
  s_matnr-low = '11'.
  s_matnr-sign = 'E'.
  s_matnr-option = 'EQ'.
  APPEND s_matnr.
  CLEAR s_matnr.

Hope this helps you.

Regards,

Tarun

Read only

Former Member
0 Likes
522

Hi Saso,

Please use RANGES. Prepare a table of ranges for you requirement & pass the same in SELECT query.

Regards

Abhii

Read only

Former Member
0 Likes
522

Exclude your values in AT selection screen output.