Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Button

Former Member
0 Likes
743

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
722

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..

7 REPLIES 7
Read only

Sm1tje
Active Contributor
0 Likes
722

are you doing this in a screen you created yourself? If so, create pf-status.

Read only

former_member195383
Active Contributor
0 Likes
722

Hi

you can use....

use CALL SCREEN 'XXXX' INCLUDING 'ZXXXXX'.

'XXXX' is the screen number and 'ZXXXXX' is the program name.

Read only

MarcinPciak
Active Contributor
0 Likes
722

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 number

CALL SCREEN is ok too, but you will create new sequence call.

Regards

Marcin

Read only

Former Member
0 Likes
722

Hi,

You can use SET PF-STATUS to create pf-status. In PF-STATUS you specify back to previous screen.

Regards,

Joan

Read only

Former Member
Read only

Former Member
0 Likes
723

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..

Read only

Former Member
0 Likes
722

Thank guys i found out how to make the BACK button already. You guys have been a great help.