I'm trying to do the following thing: show user a selection screen with two buttons, each button, in turn, opens it own selection screen, which later initiates some processing and displays the results somehow.
My current code is something like the following:
REPORT ZREP.
TABLES sscrfields.
SELECTION-SCREEN:
PUSHBUTTON 1(10) text-001 USER-COMMAND b1,
PUSHBUTTON 15(10) text-001 USER-COMMAND b2.
SELECTION-SCREEN BEGIN OF SCREEN 1100.
PARAMETERS p_param1 TYPE c.
SELECTION-SCREEN END OF SCREEN 1100.
SELECTION-SCREEN BEGIN OF SCREEN 1200.
PARAMETERS p_param2 TYPE c.
SELECTION-SCREEN END OF SCREEN 1200.
AT SELECTION-SCREEN.
CASE sscrfields.
WHEN 'b1'.
CALL SELECTION-SCREEN 1100.
WHEN 'b2'.
CALL SELECTION-SCREEN 1200.
ENDCASE.
START-OF-SELECTION.
" What do I do here?
The subsequent selection screens (1100 and 1200) open just fine when respective buttons are click. However, when I hit F8 on any of the screens, no processing takes place. Instead, the initial selection screem is opened, START-OF-SELECTION is not triggered.
Since I'm pretty new to ABAP, I assume that there's something wrong with my entire approach, so if anyone can point me to the right direction, that would be greatly appreciated.


CALL TRANSACTIONso you get "normal", one-depth selection screens.