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

Hiding execute button.

Former Member
0 Likes
1,165

Hi Abapers,

I had made an executable program in which im having radio buttons and push buttons.Now i want ot hide execute button in the menu bar.Can anyone give me code for this.

Points will be rewarded for helpful answere.

Thanks in advance.

Regards,

Neethu Joy.

1 ACCEPTED SOLUTION
Read only

mamHB
Explorer
0 Likes
1,065

Hello,

maybe this is helpful:


DATA:
  gt_exclude TYPE TABLE OF rsexfcode,
  gs_exclude TYPE          rsexfcode.

PARAMETERS:
  pa_test TYPE c.

INITIALIZATION.
  gs_exclude-fcode  = 'ONLI'.
  APPEND gs_exclude TO gt_exclude.

AT SELECTION-SCREEN OUTPUT.

  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      p_status  = '%_00'
      p_program = 'RSSYSTDB'
    TABLES
      p_exclude = gt_exclude.

Regards Matthias

7 REPLIES 7
Read only

Former Member
0 Likes
1,065

If you want to hide the execute button, then i would rather suggest you to convert this into a module pool program.

Thanks,

Balaji

Read only

0 Likes
1,065

Hi Bala,

Thanks for quick reply.

Can't i do that without using module pool programming.

Regards,

Neethu Joy.

Read only

Former Member
0 Likes
1,065

Hi neethu,

how you want to hide the button dynamically or permenantly.i think you can hide the button by going to the screen(may be the default screen 1000).

regards

shibu

Read only

0 Likes
1,065

Hi sibu,

Im in MDM could you tell me how to proceed with that.

Thanks,

Neethu

Read only

mamHB
Explorer
0 Likes
1,066

Hello,

maybe this is helpful:


DATA:
  gt_exclude TYPE TABLE OF rsexfcode,
  gs_exclude TYPE          rsexfcode.

PARAMETERS:
  pa_test TYPE c.

INITIALIZATION.
  gs_exclude-fcode  = 'ONLI'.
  APPEND gs_exclude TO gt_exclude.

AT SELECTION-SCREEN OUTPUT.

  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      p_status  = '%_00'
      p_program = 'RSSYSTDB'
    TABLES
      p_exclude = gt_exclude.

Regards Matthias

Read only

Former Member
0 Likes
1,065

Hi Murken,

Thanks for your valuable answere. its working .

All the best

Regards,

neethu

Read only

Former Member
0 Likes
1,065

I have to agree to the last posting a really valuable hint thanks