Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to handle The Back button on Module Pool screen

ankit_doshi
Participant

Hi Gurus,

3 REPLIES 3
Read only

Former Member
0 Likes
1,139

Hi

Can you please explain in detail, waht exactly you want to do?

You can write your code under user command checking the value of function code for BACK button under sy-ucomm.

like:

case sy-ucomm.

when 'BACK'.

leave to screen 0.

end case.

but this should be in PAI module of the screen.

Thanks

Lalit Gupta

Read only

Former Member
0 Likes
1,139

Hi...

For handling BAck Button

MAke a PF Status and define Button BACK Button in standard tool bar option. Then Double Click the back Button and in function attributes define function type as 'E'.

now in module user_command input write given below code..

case ok_code.
when 'BACK'.
set screen 0.
endcase.

i hope you understand.

Regards

Shelly MAlik

Read only

Former Member
0 Likes
1,139

hi,

Explain your problem i n detail, only then someone can help you.