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

pushbuttons and execute

Former Member
0 Likes
608

I want to execute a report without pressing F8 but by using the same functionality in a pushbutton.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
577

Hi,

Create a pushbutton on the selection screen and it will resolve this.If u want to disable the execute button use the FM "RS_SET_SELSCREEN_STATUS"

Regards,

Shafi

3 REPLIES 3
Read only

Former Member
0 Likes
577

HI,

Find the F8 fcode for the selection screen. Rearrange this fcode created push button on the screen field. THis will be helpful

Regards,

Naresh

Read only

Former Member
0 Likes
578

Hi,

Create a pushbutton on the selection screen and it will resolve this.If u want to disable the execute button use the FM "RS_SET_SELSCREEN_STATUS"

Regards,

Shafi

Read only

Former Member
0 Likes
577

below is for adding pushbutton on selection-screen......

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.

below f.m module is to exclude the standard pushbutton

RS_SET_SELSCREEN_STATUS