Hallo colleagues,
I would like to create 3 screens. The first screen shows only a parameter.
If the user click on the Exceute Icon (F8) the second screen shows some select options.
If the user click on the execute icon (F8) than the third screen with an ALV table will be shown.
Therefore I have created 2 programs.
The first program looks like this.
Program X.
INITIALIZATION.
parameter: ....
START OF SELECTION.
..
CALL TRANSACTION Y
ENd Program
Transaktion Y contains Program Y
Program Y.
INITIALIZATION.
SELECT-OPTIONS.....
START OF SELECTION.
Here an ALV table will be created.....
If I call the program X than the Parameter will be shown.
If I click on the exceute button, than the select Option will be shown.
BUT now If I click on the excute button again, the ALV table will not be shown, but the parameter (Screen 1) will be shown.
Can someone tell me, what I am doing wrong here?
Thanks in advance
Irian