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

basic select option question

Former Member
0 Likes
339

I am not sure how hidden select options works..i have attached example for reference...please any body explain select option..

*Hidden select options for MPP, QC, and Non-401K eligible employees

select-options: S1 for P0001-BTRTL MODIF ID HID,

S2 for P0001-BTRTL MODIF ID HID,

S3 for P0001-BTRTL MODIF ID HID.

2 REPLIES 2
Read only

Former Member
0 Likes
320

While you are in the ABAP Editor, why not try putting your cursor over your Keyword, and press the F1 Key to get the SAP Help which will explain what you aer looking for. It is much faster than posting a thread here and gets you in the habit of digging into things and learning about them.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
320

If you want to hide these Select-options from the selection screen, try this.

select-options: S1 for P0001-BTRTL MODIF ID HID,
                      S2 for P0001-BTRTL MODIF ID HID,
                      S3 for P0001-BTRTL MODIF ID HID.


at selection-screen output.

Loop at screen.
  if screen-group1 = 'HID'.
    screen-active = '0'.
    modify screen.
  endif.
endloop.

Regards,

Rich Heilman