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

F8

Former Member
0 Likes
660

WHat is the functon code for F8

how to implement in the logic.

I want to get some functionality when user presses F8 in module pool.

how to do it??

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
614

Hi,

You can run only report programs using F8. Module pools should be given a transaction code for executing it.

Else you can do like:

create a report.

inside that do screen programming using call screen <screen no> statement.

Then F8 will work for you.

Regards,

Renjith Michael.

4 REPLIES 4
Read only

Former Member
0 Likes
614

hi,

enter /h and press F8

in debugging mode SY-UCOMM ll hav de FUNC CODE

Read only

Former Member
0 Likes
614

Sharma,

Enter /h on command field and check for sy-ucomm

under PAI event .

module validation_check.

double click on it it will take you to ABAP editor.

There write code:

CASE sy-ucomm.

WHEN 'your F8 fcode'.

ENDCASE.

Don't forget to reward if useful....

Read only

Former Member
0 Likes
615

Hi,

You can run only report programs using F8. Module pools should be given a transaction code for executing it.

Else you can do like:

create a report.

inside that do screen programming using call screen <screen no> statement.

Then F8 will work for you.

Regards,

Renjith Michael.

Read only

Former Member
0 Likes
614

resolved