Hi all,
In my program i written the following code.
REPORT zmmgrexcdtl LINE-SIZE 233.
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-t02.
PARAMETER: finumber AS CHECKBOX ."INPUT OFF.
PARAMETER: grnumber AS CHECKBOX ."INPUT OFF.
SELECTION-SCREEN : END OF BLOCK b1.
IF finumber = 'X'.
SUBMIT ZMMGREXCDTL VIA SELECTION-SCREEN.
ENDIF.
IF grnumber = 'X'.
SUBMIT zgetgrno VIA SELECTION-SCREEN.
ENDIF.
Here according to the check box selected it will go to the screen of tat prgm.Now what i want is from tat screen if i am clicking the back button,it should come to the original screen from wer its called.
I think using set pf-status we can do tat..but i don't know how to implement it.
Any body please tell me how to do tat
Thanks in Advance,
Nitin.