‎2008 May 15 2:26 PM
Hi,
How I can add a default value for multiple selection, on a Select-options?
Thanks in advance,
Brian Gonsales
‎2008 May 15 2:37 PM
Hi
If you mean to upload a default value in selection-screen:
TABLES T001.
SELECT-OPTIONS S_BUKRS FOR T001-BUKRS DEFAULT 'ZZZZ'.or
TABLES T001.
SELECT-OPTIONS S_BUKRS FOR T001-BUKRS.
INITIALIZATION.
S_BUKRS(3) = 'IEQ'.
S_BUKRS-LOW = 'ZZZZ'.
APPEND S_BUKRS.Max
‎2008 May 15 2:30 PM
By default, selection optoins are RANGES, therefore to fill these before display, in the INITIALIZATION section
CLEAR: so_field, so_field[].
so_field = 'IEQvalue'. append so_field.
so_field = 'IEQvalue2'. append so_field.
so_field = 'IEQvalue3'. append so_field.
If you want ranges
CLEAR: so_field, so_field[].
so_field = 'IBT'. so_field-low = 'lowvalue'. so_field-high = 'highvalue' append so_field.
*
*
* ETC
Edited by: Paul Chapman on May 15, 2008 9:30 AM
‎2008 May 15 2:37 PM
Hi
If you mean to upload a default value in selection-screen:
TABLES T001.
SELECT-OPTIONS S_BUKRS FOR T001-BUKRS DEFAULT 'ZZZZ'.or
TABLES T001.
SELECT-OPTIONS S_BUKRS FOR T001-BUKRS.
INITIALIZATION.
S_BUKRS(3) = 'IEQ'.
S_BUKRS-LOW = 'ZZZZ'.
APPEND S_BUKRS.Max