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: 

chkbox

Former Member
0 Kudos

Hi All,

How to add the refresh button at application tool bar. at report output.

regards.

1 ACCEPTED SOLUTION

former_member202957
Contributor
0 Kudos

Hi Srinivas,

Use <b>SET PF-STATUS 'XXXX' </b>

In place of XXXX give any status name and double click on it... it will take u to new screen i.e screen painter where u hv options menu bar, application tool bar select wht u want click that and give the function name as REFRESH and give the icon name. SAVE and Activate.

and in ur report use the follwoing syntx.

Case Sy-ucomm.

when 'REFRESH'.

ur code....

endcase.

there refresh button will apper in output report.

hope this ll give u idea....

<b>reward if useful</b>

regards,

sunil kairam.

Edited by: sunil kairam on Feb 7, 2008 5:27 PM

4 REPLIES 4

Former Member
0 Kudos

hi,

You need to use GUI status for that.

Reward if it is useful

Former Member
0 Kudos

Hi.

use the following code.

SET PF-STATUS 'ZTOOL'.

double click on ZTOOL and in the application function keys u can specify the refresh buton..

Reward points if useful.

Regards,

Mansi.

former_member202957
Contributor
0 Kudos

Hi Srinivas,

Use <b>SET PF-STATUS 'XXXX' </b>

In place of XXXX give any status name and double click on it... it will take u to new screen i.e screen painter where u hv options menu bar, application tool bar select wht u want click that and give the function name as REFRESH and give the icon name. SAVE and Activate.

and in ur report use the follwoing syntx.

Case Sy-ucomm.

when 'REFRESH'.

ur code....

endcase.

there refresh button will apper in output report.

hope this ll give u idea....

<b>reward if useful</b>

regards,

sunil kairam.

Edited by: sunil kairam on Feb 7, 2008 5:27 PM

Former Member
0 Kudos

Hi,

Adding Refresh button is same as like adding BACK, EXIT AND cancel BUTTONS. Which v create for every List.

use SET PF-STATUS 'ZREF'.

If u double click on that it will directly take u to the screen where u find

tree structure like application tool bar etc... and if u go to the subtree level

there u find the blank sace for every operation that u want to declare for.

That key shouldl be activated.

U will get in the list after execution.

Regards.