Hello,
I have following problem:
On my selection screen (customized, not standard), I have different parameters. The user should fill these parameters, and if he is pressing 'ENTER' the values of these parameters should be written directly in an internal table,the fields should be cleared and he should be able to insert new values.
When he clicks on 'execute' (or press f8) the programm should continue with the process. Is this possible?
So the user should be able to fill the internal table by using the parameters (as much data he want to have).
This is my current code, but here is the data of the parameter written after pressing execute (and so only one data set is written in the internal table).
**********************
call selection-screen 0100.
SPLIT field AT '-' INTO itab-matnr itab-charg.
itab-erfmg = erfmg.
itab-lgort = lgort.
CLEAR field.
clear erfmg.
clear lgort.
APPEND itab.
**********************
Thanks for your help,
Christoph