‎2009 Nov 12 4:56 PM
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
‎2009 Nov 12 5:01 PM
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
‎2009 Nov 12 5:01 PM
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
‎2009 Nov 13 9:57 AM
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
‎2009 Nov 13 10:18 AM
‎2009 Nov 13 2:36 PM
Hi All,
Can any body help for my above problem..??
Thanks in Advance..
Best Regards,
KALAM.A
‎2009 Nov 16 2:50 PM
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