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

Standard Function Keys

Former Member
0 Likes
778

Hi every buddy,

My requirement is to use the F3, F4 Function keys for my buttons in application toolbar. Can I implement this.

Thanx in advance,

ram

6 REPLIES 6
Read only

Former Member
0 Likes
658

Hi,

yes, you can do that.

F3 is escape, F4 help

override them, by assigning to the application toolbar buttons.

regards

vijay

Read only

0 Likes
658

Hi Vijay,

First of all i need to assign that function key(F3) to any of the button in my application toolbar. I dont see F3 key in the list of function keys in SE41 transaction. Could u clarify this.

Ram

Read only

0 Likes
658

Hi Ram,

sorry it is possible...

check the below reply

VIjay

Message was edited by: Vijay Babu Dudla

Read only

0 Likes
658

Hi Ram,

In se41 goto

<b>

    Utilities menu-->F Key Consistency

</b>

click on F key consistency and override the Fkeys.

Regards

vijay

Read only

Former Member
0 Likes
658

Hi ram,

1. trapping F4 is simple,

but F3 is tricky.

2. Try this code (just copy paste)

it can trap F4, but not F3.

REPORT ABC.

PARAMETERS : A TYPE C.

START-OF-SELECTION.

WRITE 😕 'BASIC LIST'.

AT PF03.

BREAK-POINT.

WRITE 😕 'YOU PRESSED F3'.

AT PF04.

BREAK-POINT.

WRITE 😕 'YOU PRESSED F4'.

AT USER-COMMAND.

BREAK-POINT.

regards,

amit m.

Read only

Former Member
0 Likes
658

Hi ram,

I think you are talking about pre-defined system codes.

Check the link below...

http://www.geocities.com/victorav15/sapr3/abap.html#prefuncd

Hope it helps,

Regards,

Maheswaran.B