‎2007 Feb 26 2:45 PM
i want to hide the execute button (F8) in the selection screen.
My selection screen number is 9000.
if i didnt use the selection screen number and use set pf-status its working fine.
But when i use selection-screen number 9000 its not working.
How to solve this.
Thanks in advance.
‎2007 Feb 26 2:47 PM
HI ,
Refer the sample program:
demo_sel_screen_status
Regards,
Ravi
‎2007 Feb 26 2:48 PM
Are you calling set pf-status on the screen 9000 module?
Regards,
Amit
reward all helpful replies.
‎2007 Feb 26 2:50 PM
‎2007 Feb 26 2:50 PM
Hello,
Try like this:
Define a status gui and call it in initialization:
INITIALIZATION.
SET PF-STATUS 'ZSTS' IMMEDIATELY.
WRITE sy-pfkey.
You need to declare sscrfields table in tables statment to manage user commands. Example:
AT SELECTION-SCREEN.
CASE sscrfields-ucomm.
WHEN 'LEAVE' OR 'CANCEL' OR 'BACK'.Vasanth