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

Selection-Screen F1 Help

Former Member
0 Likes
987

HI Abapers,

My requirement is, in the selection-screen i want to have a push button next to execute button with icon ICON_INFORMATION from table ICON displayed on it. On the click of the Push button a sepeate window has to be opened which displays the Documentation of the program. How to achieve it .Situable answers will be rewarded.

Regards,

Kasi S

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
854

That will automatically happen if you maintain the documentation for the program.

In SE38, put the program, select the documentation radio butotn and maintain the documentation for the program.

Once that is done, execute the program and you will see the extra button.

Regards,

Ravi

HI Abapers,

My requirement is, in the selection-screen i want to have a push button next to execute button with icon ICON_INFORMATION from table ICON displayed on it. On the click of the Push button a sepeate window has to be opened which displays the Documentation of the program. How to achieve it .Situable answers will be rewarded.

Regards,

Kasi S

4 REPLIES 4
Read only

Former Member
0 Likes
855

That will automatically happen if you maintain the documentation for the program.

In SE38, put the program, select the documentation radio butotn and maintain the documentation for the program.

Once that is done, execute the program and you will see the extra button.

Regards,

Ravi

Read only

Former Member
0 Likes
854

Hi kasi,

this has been a topic before.

Please take a look at:

Read only

Former Member
0 Likes
854

Hi Kasi,

chk this program , here add ur Pf-STATUS and modify the code accordingly

report demo_sel_screen_status .

data itab type table of sy-ucomm.

parameters test(10) type c.

at selection-screen output.

  append: 'PRIN' to itab,
          'SPOS' to itab.

  call function 'RS_SET_SELSCREEN_STATUS'
       exporting
            p_status  = sy-pfkey
       tables
            p_exclude = itab.

Read only

Former Member
0 Likes
854

hai,

this is the coding for keeping pushbutton on application toolbar.

TABLES sscrfields.

PARAMETERS: p_carrid TYPE s_carr_id,

p_cityfr TYPE s_from_cit.

SELECTION-SCREEN: FUNCTION KEY 1,

FUNCTION KEY 2.

INITIALIZATION.

sscrfields-functxt_01 = 'LH'.

sscrfields-functxt_02 = 'UA'.

AT SELECTION-SCREEN.

CASE sscrfields-ucomm.

WHEN'FC01'.

p_carrid = 'LH'.

p_cityfr = 'Frankfurt'.

WHEN 'FC02'.

p_carrid = 'UA'.

p_cityfr = 'Chicago'.

ENDCASE.

START-OF-SELECTION.

WRITE / 'START-OF-SELECTION'.

Message was edited by:

tamilarasan kandasamy