‎2008 Dec 29 1:35 PM
I want to ask that if it is possible to create a button in ABAP GUI which have the function to go back the previous screen like when I executed the function and go to next screen and I want go go back to the previous screen. I search the forum but all I find is LEAVE SCREEN which is not i wanted.
‎2008 Dec 30 9:51 AM
Hi,
You can do this surely.
Make a button in PF Status & set following properties.
name:- &F03
Fun :- &F03
Function Text:- Back
Info Text:- BACK
Fast Path:- B
It will run...
Thanks & Regards,
Krishna..
‎2008 Dec 29 1:38 PM
are you doing this in a screen you created yourself? If so, create pf-status.
‎2008 Dec 29 1:39 PM
Hi
you can use....
use CALL SCREEN 'XXXX' INCLUDING 'ZXXXXX'.
'XXXX' is the screen number and 'ZXXXXX' is the program name.
‎2008 Dec 29 2:41 PM
Either you specify it statically in the screen attributes (next screen) or you do it in your code with:
LEAVE TO SCREEN XXX. "where XXX stands for your previous screen numberCALL SCREEN is ok too, but you will create new sequence call.
Regards
Marcin
‎2008 Dec 30 9:13 AM
Hi,
You can use SET PF-STATUS to create pf-status. In PF-STATUS you specify back to previous screen.
Regards,
Joan
‎2008 Dec 30 9:18 AM
Hi,
Refer this link http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9d5635c111d1829f0000e829fbfe/frameset.htm
Regards,
Pravin
‎2008 Dec 30 9:51 AM
Hi,
You can do this surely.
Make a button in PF Status & set following properties.
name:- &F03
Fun :- &F03
Function Text:- Back
Info Text:- BACK
Fast Path:- B
It will run...
Thanks & Regards,
Krishna..
‎2008 Dec 30 11:22 AM
Thank guys i found out how to make the BACK button already. You guys have been a great help.