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

How to delete the execution button on the PARAMETER screen?

Former Member
0 Likes
803

Hello everybody.

Does anyone know?

The execution button is erased on the PARAMETER screen.

And, it makes it only to the back ground execution.

Please teach someone.

  • Test Program

REPORT ZZTEST01 MESSAGE-ID 00

NO STANDARD PAGE HEADING

LINE-SIZE 120

LINE-COUNT 90.

PARAMETERS:

P_GJAHR TYPE GJAHR OBLIGATORY "Year

DEFAULT SY-DATUM(4).

START-OF-SELECTION.

WRITE: / P_GJAHR.

END-OF-SELECTION.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
776

Hi,

The execute button is from the SAP standard GUI status. So if you want to have that button disappear, pls follow these steps:

1. Copy SAP standard GUI status '%_00' to your own GUI STATUS say 'STATUS' using transaction SE41

2. Change all the function codes inactive or delete them from your own GUI STATUS

3. Call your own GUI status at the event INITIALIZATION and AT SELECTION-SCREEN OUTPUT using SET PF-STATUS command.

Regards,

Lim...

Hello everybody.

Does anyone know?

The execution button is erased on the PARAMETER screen.

And, it makes it only to the back ground execution.

Please teach someone.

  • Test Program

REPORT ZZTEST01 MESSAGE-ID 00

NO STANDARD PAGE HEADING

LINE-SIZE 120

LINE-COUNT 90.

PARAMETERS:

P_GJAHR TYPE GJAHR OBLIGATORY "Year

DEFAULT SY-DATUM(4).

START-OF-SELECTION.

WRITE: / P_GJAHR.

END-OF-SELECTION.

4 REPLIES 4
Read only

Former Member
0 Likes
777

Hi,

The execute button is from the SAP standard GUI status. So if you want to have that button disappear, pls follow these steps:

1. Copy SAP standard GUI status '%_00' to your own GUI STATUS say 'STATUS' using transaction SE41

2. Change all the function codes inactive or delete them from your own GUI STATUS

3. Call your own GUI status at the event INITIALIZATION and AT SELECTION-SCREEN OUTPUT using SET PF-STATUS command.

Regards,

Lim...

Read only

0 Likes
776

Thank you for the reply.

It is tried at once.

Read only

Former Member
0 Likes
776

Hi,

In the Report program, you can call your own GUI Status with which you can control the program flow. You need to create your own STATUS and in the INITIALIZATION event you need to call the PF Status.

Have a look at the following links for:

1) PF Status Creation (Menu Painter)

http://help.sap.com/saphelp_nw04/helpdata/en/d1/802cfc454211d189710000e8322d00/frameset.htm

2) ABAP Report Painter

http://help.sap.com/saphelp_nw04/helpdata/en/d1/802cfc454211d189710000e8322d00/frameset.htm

You can also have a look at the Dialog Programming with the following search string : DEMODYNPRO*.

Hope this will help.

Thanks,

Samantak.

Read only

0 Likes
776

Thank you for the reply.