Hi all,
I am writing a report that read two inputs parameters. These are obligatory.
SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-005.
PARAMETERS: name(40) type c OBLIGATORY.
PARAMETERS: nr type i OBLIGATORY.
SELECTION-SCREEN END OF BLOCK 1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR name.
............
Perfom XXXX.
Perform YYY.
What am I doing wrong?
I can select the first parameter from the help list without problem. When I enter the second one, I can see that the variable is empty after setting a break point and going in the debug mode.
What should I do to make this work? Please help.