Hi,
- add comments to your source code - someone else will have to do maintennance
- add types and texts to your selection screen fields - better understanding given
if IM_CASHIER is a range, it will be defined a a table type with a table line with columns sign, option, low, high.
FIELD-SYMBOLS:
<USNAM2> LIKE LINE OF LT_USNAM2.
APPEND INITIAL LINE TO LT_USNAM2 ASSIGNING <USNAM2>.
<USNAM2>-sign = 'I'. "Include optio
<USNAM2>-option = 'EQ'.
<USNAM2>-low = I2_CASH.
Regards Clemens