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

SAP Query -> Application Bar Changes

Former Member
0 Likes
933

Hi All,

This is Regarding SAP Query -> Application Bar Changes...

Go to T.Code SQ01-->

Choose: Query (Ex:- UserGroup:/SAPQUERY/ME & Query: MEPO ) -->

Execute(F8)-->u201CDynamic Selection Button(Shift+F4) u201D on Application Bar needs to removed from here..

Kindly help where can I need to do the changes for Deactivating the u201CDynamic Selectionu201D Button.

suggest me if any userexits/ Enhancements..???

Best Regards,

KALAM.A

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
865

Hi

If you have Dynamic Selection Button active, it means the infoset of your query is based on database logic, so u should check there

Max

5 REPLIES 5
Read only

Former Member
0 Likes
866

Hi

If you have Dynamic Selection Button active, it means the infoset of your query is based on database logic, so u should check there

Max

Read only

0 Likes
865

Hi Max, thanks for the reply..

Yes i aggree SAP Query & Infoset is a combination of database tables based on the DB Logic..

So

where shall i need to do that changes for Deactivating the u201CDynamic Selectionu201D Button...

Is there any userExits for this...???

Edited by: KALAM A on Nov 13, 2009 3:29 PM

Read only

0 Likes
865

Hi

I believe u need to change your db logic

Max

Read only

0 Likes
865

Hi All,

Can any body help for my above problem..??

Thanks in Advance..

Best Regards,

KALAM.A

Read only

0 Likes
865

Hi

Just as I said u should manage it in your DB in order to delete the free selection, if u can't do it u can try to suppress the pushbutton DYNS in AT SELECTION-SCREEN OUTPUT event in the INFOSET.

U can use the fm to do it RS_SET_SELSCREEN_STATUS:

DATA: T_EXCL TYPE TABLE OF SY-UCOMM.

  APPEND 'DYNS' TO T_EXCL.

  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      P_STATUS  = SY-PFKEY
    TABLES
      P_EXCLUDE = T_EXCL.

Max