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: 

Disable the Dynamic Selection Icon from T.Code FBL1N

Former Member
0 Kudos

Hi,

I want to disable the Dynamic Selection Icon from T.Code FBL1N...

Please Note that i found a link where some code is given for this problem.

Please tell me where i paste that code....after initialization or where....

Thanks...

Edited by: Prince Kumar on May 16, 2009 8:59 AM

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

1) COPY the program RFITEMAP and create a ZRFITEMAP

2) and added this code in the INITILIZATION event. You can search ZRFITEMAP with INITIALIZATION and add below code there.


  INTIALIZATION.
 
  DATA: t_exclude TYPE STANDARD TABLE OF sypfkey.
  APPEND 'DYNS' TO t_exclude.
 
  "DYNS is the dynamic selection screen function code.
 
  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      p_status        = sy-pfkey
    TABLES
      p_exclude       = t_exclude

Regards

Shital

4 REPLIES 4

Former Member
0 Kudos

Hi,

1) COPY the program RFITEMAP and create a ZRFITEMAP

2) and added this code in the INITILIZATION event. You can search ZRFITEMAP with INITIALIZATION and add below code there.


  INTIALIZATION.
 
  DATA: t_exclude TYPE STANDARD TABLE OF sypfkey.
  APPEND 'DYNS' TO t_exclude.
 
  "DYNS is the dynamic selection screen function code.
 
  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      p_status        = sy-pfkey
    TABLES
      p_exclude       = t_exclude

Regards

Shital

0 Kudos

Thanks dear,

After add this code, it hide the Dynamic Selection icon..and another button Activate Worklist is showing in place of Dynamic Selection icon.

What is happening here....plz clear...

0 Kudos

Append both of them.


  APPEND 'DYNS' TO t_exclude.
  APPEND 'FC01' TO t_exclude.

Former Member
0 Kudos

I see that you have asked this question twice. I am not sure which one to answer is best.

Please do the needfull and advice me this one or other one you are continuing with?