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

Close button not working

Former Member
0 Likes
565

Hi,

I have a scenario where in we are calling a screen from another custom screen based on some user actions in the main screen. This new screen that is called is basically called as a part of the object alv. Now in the screen that is being called we have a 'Back" button which is working fine to navigate to the main screen but the right hand corner most close button in the title bar is not working.

It is not responding at all neither it is triggering any PAI event.

Can any one suggest what we can do to make it active or may be if we can hide it altogather as there already is a back button.

3 REPLIES 3
Read only

former_member194669
Active Contributor
0 Likes
514

I think okcode for that will be 'EXIT you need to code as like BACK for this also

a®

Read only

Former Member
0 Likes
514

Hi Jayadeep,

Please check which PF-Status is used? Ensure that funcion code for BACK in that PF status is defined of type 'E'.

Thanks & Regards,

Anil Salekar

Read only

Former Member
0 Likes
514

Hi Jaydeep,

You can write an exit module for this.

Like:

module EXIT input.

IF OK_CODE = 'F_EXIT'.

LEAVE PROGRAM.

ENDIF.

endmodule.

In this way close button will work.

Regards,

Nidhi Kothiyal