Application Development 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: 

F1 button linked to some URL!!

Former Member
0 Kudos

Hi,

There should be a button in the initial screen that link some help documentation (e.g.: HTML file, link to training material, etc.) where the user could read the business cases and functionality covered by this program ie F1 button on selection screen.

how to achieve this?

Regards

Gunjan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi.

On the selection screen you can use the command

AT-SELECTION-SCREEN ON HELP-REQUEST FOR <param>.

In this code block you can implement the needed functionality like calling a function module to show some URL.

Regards,

Timo.

3 REPLIES 3

Former Member
0 Kudos

Hi.

On the selection screen you can use the command

AT-SELECTION-SCREEN ON HELP-REQUEST FOR <param>.

In this code block you can implement the needed functionality like calling a function module to show some URL.

Regards,

Timo.

Former Member
0 Kudos

'Initial screen' -


of a transaction code/ report ?

What about putting an 'ICON_INFORMATION' on the initial screen. When click on this icon ,in the PAI or AT USER-COMMAND call any of the page/URL using available FMs.

Regards,

A.Singh

Former Member
0 Kudos

Hi

U can use

At Selection-Screen ON HELP-REQUEST FOR psel_low_high

-When the user presses F1 on the relevant field, the subsequent processing block is executed

-You can thus implement a self-programmed help for the input/output fields of the selection screen.

-If the program contains such an event and the user presses F1 , the system processes this rather than displaying the documentation of the Dictionary field .

use can these Links for Reports:-

bhttp://www.sapgenie.com/abap/reports.htm

http://www.allsaplinks.com/material.html

http://www.sapdevelopment.co.uk/reporting/reportinghome.htm

Thanks