‎2008 Aug 27 7:14 PM
Hi All,
I have the following statement for selection.
SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS no intervals.
I have to default it with values 1000 and 1100. When I click the right arrow button next to the field, I should see 1000 and 1100.
Can someone please help me in implimenting it.
Thanks,
Veni.
‎2008 Aug 27 7:17 PM
Hi,
SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS no intervals.
At selection-screen output.
S_BUKRS-low = '1000'.
S_BUKRS-sign = 'I'.
S_BUKRS-options = 'EQ'.
append s_bukrs.
S_BUKRS-low = '1100'.
S_BUKRS-sign = 'I'.
S_BUKRS-options = 'EQ'.
append s_bukrs.
Thanks,
Senthil
‎2008 Aug 27 7:17 PM
Hi,
SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS no intervals.
At selection-screen output.
S_BUKRS-low = '1000'.
S_BUKRS-sign = 'I'.
S_BUKRS-options = 'EQ'.
append s_bukrs.
S_BUKRS-low = '1100'.
S_BUKRS-sign = 'I'.
S_BUKRS-options = 'EQ'.
append s_bukrs.
Thanks,
Senthil
‎2008 Aug 27 7:18 PM
Try like this:
TABLES: BSEG.
SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS NO INTERVALS.
INITIALIZATION.
S_BUKRS-SIGN = 'I'.
S_BUKRS-OPTION = 'EQ'.
S_BUKRS-LOW = '1000'.
APPEND S_BUKRS.
S_BUKRS-SIGN = 'I'.
S_BUKRS-OPTION = 'EQ'.
S_BUKRS-HIGH = '1100'.
APPEND S_BUKRS.
Regards,
Naimesh Patel
Edited by: Naimesh Patel on Aug 27, 2008 1:18 PM