Hi Nitin,
Set your own PF status, enable the back button, and handle this using AT USER-COMMAND event. In this handler subtract the variable sy-lsind by 1, so that it moves to previous screen.
Example:
This code will be in AT USER-COMMAND.
IF sy-lsind > 0.
SUBTRACT sy-lsind BY 1.
ENDIF.