2006 Dec 05 6:50 AM
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
2006 Dec 05 6:53 AM
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
2006 Dec 05 6:53 AM
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
2006 Dec 05 6:53 AM
2006 Dec 05 6:54 AM
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.
2006 Dec 05 6:55 AM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |