‎2008 Jul 10 7:27 PM
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.
‎2008 Jul 10 7:29 PM
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.
‎2008 Jul 10 7:29 PM
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