‎2009 Jul 22 4:08 AM
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.
‎2009 Jul 22 5:05 AM
I think okcode for that will be 'EXIT you need to code as like BACK for this also
a®
‎2009 Jul 22 5:30 AM
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
‎2009 Jul 22 5:58 AM
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