cancel
Showing results for 
Search instead for 
Did you mean: 

Unable going back to first selection screen

Former Member
0 Kudos

Hi,

I developed a one report zast_ra with a selection screen and here 3 radio buttons provided for calling another 3 differnt selection screens.

but the probleam is when i am executing the the program y_main_create , it works fine but when i press back button it directly come out of program but i want it shoud come to my zast_ra report intial slection screen.

Pl help

START-OF-SELECTION.

IF c_down = 'X'.

PERFORM show_progress USING text-s01.

PERFORM header_data.

PERFORM select_data.

PERFORM build_output.

PERFORM gui_download.

*endif.

ELSEIF rb_crea = 'X'.

SUBMIT y_main_create VIA SELECTION-SCREEN.

ELSEIF rb_dele = 'X'.

SUBMIT y_main_delete VIA SELECTION-SCREEN.

ELSEIF rb_upda = 'X'.

SUBMIT y_main_update VIA SELECTION-SCREEN.

ENDIF.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Try using SUBMIT...VIA SELECTION SCREEN...AND RETURN.

Regards

Shiva

Answers (0)