Multiple choice technology programming languages

To allow the user to enter a range of values on a selection screen, use the ABAP keyword:

  1. DATA

  2. RANGES

  3. PARAMETERS

  4. SELECT-OPTIONS

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

SELECT-OPTIONS creates selection screens with range input capabilities (low to high values, inclusive/exclusive options). It's specifically designed for range selections unlike PARAMETERS which accepts single values. RANGES declares range objects but doesn't create screen elements.

AI explanation

SELECT-OPTIONS creates a selection-screen input that lets the user enter a range or multiple values (with operators like BT, EQ, CP) for a field, unlike PARAMETERS, which only accepts a single value. DATA and RANGES are used for declaring internal variables/tables, not for building selection-screen UI elements.