‎2009 May 21 3:07 AM
Hi ,
Is there any way that we can redefine 'Back' function, instead going back it will write a pop up message. There is workaround if we using Module Program(Screen), I'm looking if its can be done in Report program.
‎2009 May 21 4:31 AM
try event at PF-STATUS.
case sy-ucomm.
when 'BACK'.
perform popup.
endcase.
regards
Prabhu
‎2009 May 21 5:14 AM
‎2009 May 22 1:12 AM
‎2009 May 22 2:20 AM
Hi,
Module Pool:
Everyone knows it is possible by controlling the screen going forth and back with the "SET SCREEN, LEAVE SCREEN TO..., or LEAVE TO SCREEN...." and so on.
Report Programming:
In the normal standard report, I dont know whether it is possible.
But, it is possible in the Interactive Listing Program by controlling it thro "SY-LSIND = <List No>."
Rgds,
Ramani N
‎2009 May 22 3:52 AM
Hi,
Check this;
AT SELECTION-SCREEN.
CASE sy-ucomm.
WHEN 'BACK'.
"Show your popup here
"Leave to Screen 0 - incase u want to go back after showing the popup
ENDCASE.Regards
Karthik D
‎2009 May 21 6:37 AM
Hi,
Copy the standard pf-status ot zstatus.
change the function code of back to give other name.
Then write the code at PAI leal
when 'BCK'.
<<<write u'r own code>>
Naveeen M.
‎2009 May 22 3:58 AM