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: 

AT selection-screen on ON HELP-REQUEST

Former Member
0 Kudos

Hi

What is normally done in the Selection Screen event :

AT selection-screen on ON HELP-REQUEST.

Normally pressing F1 helps gives Documentation present in Data Element assoicated with the field. Exactly in what cases would we be needing to use this event.

1 ACCEPTED SOLUTION

Former Member

But how do i bring up the dialog window with my explanation. I tried using WINDOW STARTING AT.. ENDING AT inside this event. It didnt work. So how you do bring the explanation to the user in a dialog window from this event

10 REPLIES 10

Former Member
0 Kudos

If you want to display the documentation of a specific so that the user understand what to enter in that field, you use this event.

Regards,

Ravi

Former Member
0 Kudos

Hi,

<i>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 - even if the report parameter or the selection option with LIKE or FOR points to a Dictionary field.</i>

Svetlin

Former Member

But how do i bring up the dialog window with my explanation. I tried using WINDOW STARTING AT.. ENDING AT inside this event. It didnt work. So how you do bring the explanation to the user in a dialog window from this event

0 Kudos

AT SELECTION-SCREEN ON HELP-REQUEST FOR WDATE.

CALL SCREEN 400 STARTING AT 10 5

ENDING AT 30 12.

Define your help in PBO.

Svetlin

Former Member
0 Kudos

Hi,

That event is used for search.

********************

at selection-screen on value-request for p_file.

call function 'F4_FILENAME'

exporting

field_name = 'p_file'

importing

file_name = p_file.

****************************

If you code in the same manner in the selection screen you will able to search and select a file from your work station, so that it will be uploaded in SAP.

I hope this will help you, if not plzzz be back.

CHEERS

If your problem is solved award points and close the thread.

Former Member
0 Kudos

Hi Svetlin Rusev,

Thanks. I already know what u have explained. But i am looking for one more step above it.

Former Member
0 Kudos

Hi Deepak333 k

This is not my requirement. I just want a dialog window to appear with my explanations.

Former Member
0 Kudos

Hi Svetlin Rusev

After pressing F1, when the user reads the explanation and wants to come back to the selection screen, how do i handle it. If i give LEAVE PROGRAM, it terminates. I have written the code in PAI of the Dialog screen.

0 Kudos

Hi,

try with

LEAVE TO SCREEN 0.

Svetlin

Former Member
0 Kudos

It worked. Thank You so much..