Default a button in PF-Status

Hi,
I have 3 buttons in my PF-Status, I have to set 2nd button as default. So that it should have dotted lines around it(same as default button in FM POPUP_TO_CONFIRM). So whenever I press 'ENTER' that button should be selected.
Thanks & Regards,
Adithya M.

Hi Adithya,
     I think there is no option like that, one thing you can do that if any 1 press ENTER the SY_UCOMM can be cheged to Fcode of your second button.
Thanks,
Anmol.
Edited by: anmol112 on Oct 14, 2010 9:25 PM

Similar Messages

  • How to remove default search button in search module

    I am a neophyte with code and css and normally work with Muse. But I am currently trying to customize the appearance of the search module so that it works with the website it will be serving. I have  accomplished a large part of what I've been attempting, but have hit a snag in removing the default search button (CAT_Search). I've placed the image I want to use no problem, but it is contained in some weird gray beveled box with the original 'Search' text overlapping my image.
    I have been making the rounds of tech support, tutorials, and every documented article on the search module and can find nothing that address this specific issue. Any help would be greatly appreciated! I am enclosing the what I've done so far below.
    Thanks!
    Paula
    <style type="text/css">
    body form {
      width: 163px;
      height: 48px;
      form-top-right-radius: 5px;
      form-bottom-right-radius: 5px;
      background-image: url(http://corehog.businesscatalyst.com/images/search.png);
    .search-box {
      color: #999966;
      font-family: lato;
      font-style: normal;
      font-weight: 100;
      width: 86px;
      height: 24px;
      border: none;
      max-width: 86px;
      opacity: 0%;
      max-height: 24px;
      margin-left: 12px;
      margin-top: 12px;
      margin-bottom: 12px;
    .cat_button {
      width: 32px;
      height: 24px;
      border: none
      background-color: none;
      background-image: url(http://corehog.businesscatalyst.com/images/search-button.png);
      margin-left: 12px;
      margin-top: 12px;
      margin-right: 20px;
      margin-bottom: 12px;
    </style>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/lato:n1:default.js" type="text/javascript"></script>
    <form name="catsearchform87352" method="post" action="/Default.aspx?SiteSearchID=3752&PageID=/http://corehog.businesscatalyst.com/search-results.html"><div><input class="search-box" type="text" name="CAT_Search" id="CAT_Search" /><input class="cat_button" type="submit" value="Search" /></div></form>
    {module_searchresults}

    Hi Ramandeep Nanda,
    Thanks for the reply.
    I followed a slightly different approach than the one mentioned in your post.
    I have not used any client side javascript attributes.I got the inputListOfValues Component from the launch listener event ( launchPopupEvent.getComponent() ) and in the launch listener i am setting richQuery.setModeChangeVisible(false);
    It is hiding the button now but only for the first invocation of the search dialog, it is not working.
    More specifically, for the first invocation of the search dialog, Iterator facetNames = inputListOfValues.getFacetNames(); is not returning the child components and hence the button is not being hidden.
    Any idea why this might be happening?
    Thanks,
    Vikas

  • HT200154 how do you turn off the apple TV box?  There doesn't seem to be an off button.  The status light stays on.

    how do you turn off the apple TV box?  There doesn't seem to be an off button.  The status light stays on.

    Usually, when you put it to sleep mode, the status light will turn off.  To put it into sleep mode, go to Settings.
    If you want it completely off, then I guess the only way to do it is to pull the electric plug.

  • Can we disable the default push buttons on the ALV Grid

    Hi,
        Can we disable the default push buttons on the ALV
    Grid Control...
        If so, pls send me the procedure...
    thanks and regards
       raghu

    Hi,
    In the PBO:
      PERFORM f9100_exclude_functions USING :
                             i_exclude[]  '&CHECK',
                             i_exclude[]  '&REFRESH',
                             i_exclude[]  '&LOCAL&CUT' ,
                             i_exclude[]  '&LOCAL&COPY',
                             i_exclude[]  '&LOCAL&PASTE',
                             i_exclude[]  '&LOCAL&PASTE_NEW_ROW',
                             i_exclude[]  '&LOCAL&UNDO' ,
                             i_exclude[]  '&LOCAL&APPEND',
                             i_exclude[]  '&LOCAL&INSERT_ROW',
                             i_exclude[]  '&LOCAL&DELETE_ROW',
                             i_exclude[]  '&SORT_ASC',
                             i_exclude[]  '&SORT_DSC',
                             i_exclude[]  '&FIND',
                             i_exclude[]  '&SUMC',
                             i_exclude[]  '&SUBTOT',
                             i_exclude[]  '&MINIMUM',
                             i_exclude[]  '&MAXIMUM' ,
                             i_exclude[]  '&VGRID' ,
                             i_exclude[]  '&VEXCEL' ,
                             i_exclude[]  '&VCRYSTAL',
                             i_exclude[]  '&HTML',
                             i_exclude[]  '&MAINTAIN',
                             i_exclude[]  '&SAVE',
                             i_exclude[]  '&GRAPH',
                             i_exclude[]  '&HELP',
                             i_exclude[]  '&ALL' ,
                             i_exclude[]  '&SAL' .
    *                         i_exclude[]  '&EXCLALLFC'.
    *&      Form  f9100_exclude_functions
    * This form exclude buttons  from the toolbar.
    *      -->P_IEXCLUDE  text
    *      -->P_1150   text
    FORM f9100_exclude_functions USING   pexclude LIKE i_exclude
                                   value(pfunction).
      DATA: l_exclude TYPE ui_func.
      l_exclude = pfunction.
      APPEND l_exclude TO pexclude.
    ENDFORM.                    " f9100_exclude_functions
    This will exculde the default push buttons.
    Let us know if it works for you.
    Regards,
    Anjali

  • Can we rename default 'ok' button in a dialog box??

    In dialog box generated below,I don't want the default ok button displayed,is it possible to remove it??or is there any way to rename it and change its position by using a layout manager??
    import javax.swing.*;
    public class DialogBoxDemo
    public static void main(String args[])
        JPanel panel=new JPanel();
        JPanel leftBox=new JPanel();   // left panel with a box layout
        leftBox.setLayout(new BoxLayout(leftBox,BoxLayout.Y_AXIS));
        JTextField textfield = new JTextField(10);
        leftBox.add(textfield);
        JTextField textfield1 = new JTextField(10);
        leftBox.add(textfield1);
        JCheckBox cb = new JCheckBox();
        leftBox.add(cb);
        JPanel rightBox=new JPanel();  // right panel with a box layout
        rightBox.setLayout(new BoxLayout(rightBox,BoxLayout.Y_AXIS));
        JButton but1=new JButton("Find Next");
        JButton but2=new JButton("Cancel");
        rightBox.add(but1);
        rightBox.add(but2);
        panel.add(leftBox);
        panel.add(rightBox);
        JOptionPane.showMessageDialog(null,panel,"Replace",JOptionPane.INFORMATION_MESSAGE);
    }It is possible to use default ok button instead of creating a cancel button,but I don't want a button there.I want a button in the rightBox panel which is set in a Box Layout...
    Thanks in advance...

    To rename buttons, try:
        UIManager.put("OptionPane.cancelButtonText", "Your text");
        UIManager.put("OptionPane.noButtonText", "Your text");
        UIManager.put("OptionPane.okButtonText", "Your text");
        UIManager.put("OptionPane.yesButtonText", "Your text");You can rename ok button to...for instance "cancel", but in fact, this will not change its value...Your new cancel button will be JOptionPane.OK_OPTION
    sorry it's quite late to reply for this, but other googling people might find this topic with exact problem or a little similar.

  • Setting default alert button at runtime

    Setting default alert button at runtime
    Sometime I want Button1 to be default and sometimes I want Button2 to be default.
    Please tell me how to change the default button at runtime.
    Thanks
    Claus Hansen [email protected]

    Beware of a slight bug in at least some versions. If the user dismisses the alert using the [X] close window control it fires a particular button which is not neccesarilly the default one. I always ensure that I make the default button the one which the control fires.

  • How to get default radio button in IE11 as it is in IE8 ?

    The default radio buttion in IE8 is blue in colour with 3D look and feel. But, the default radio button in IE11 is black and look and feel is different. How can i get the same radio button in IE11 as it is in IE8 ? What changes i need to do in css to get
    the same. Please suggest.
    Html
    <input type="radio" name="sex" value="male">Male<br>
    <input type="radio" name="sex" value="female">Female

    http://stackoverflow.com/questions/29657504/how-to-get-the-same-default-radio-button-in-ie11-as-it-is-in-ie8
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Ebusiness tax Rule setup - Set default rule button is disabled

    Hi All
    In ebusiness tax rule setup - Tax rule default values are not able to set. I cannot able to access the set default.
    set default value is disabled. can anyone help me know , how i can enabled button set default value in
    Tax Rules
    Thanks
    Venkatesan

    Pl ensure that you have defined all required default values set up. Ex Tax, Tax Status, Tax Jurisdiction, Tax Rate etc.

  • Add Button to GUI STATUS Application toolbar

    Hi,
    I have to add a button in the application toolbar of a gui status. I have done that many times before, but I never got into trouble like this time....
    When I open the Gui status and the tree for the application toolbar, I can see already set buttons. When I now click on change (a modification warning comes) and press the plus-icon, it is possible to enter a new item. But everything I´m typing, I get the message Function code XXXX has not been assigned to a function key. I have never got this before....
    When I now go to SE41 and enter a new function key, I can´t use it either afterwards as a button in the application toolbar.
    In the tree of the function keys, I can´t change anything...
    What can I do here? The program name is SAPMZLCG, so it has been modified sometimes. But how can I change the GUI STATUS now to add a new button?
    Thank you!

    You need to goto the application toolbar and the add your text to the items and click below the text you will get one popup which will ask for static text and dynamic text. select statictext and then add all the information like text name and if you want to add an icon you can do it aswell. the there will be another popup for fuction attributes where you will be able to find some options loke fuction types and reaction need to select all that and then click on the ok button and save check and activate the same and after that activate and check whether the button is visible or not. once the button is visible then you need to check for the ok_code and sy_ucomm and then insert the fuctionality of the button.
    I hope this might solve your problem.

  • How to grey out Allication tool bar button of PF-status for a selection-scr

    Hi All,
    I have an urgent requirement to grey out(not to exclude) an application tool bar button in normal selection-screen PF-STATUS.
    Please let me know if any one has done something like this before.

    Hi,
    This code[mentioned in the suggested link] will deactivate the button.
    DATA itab TYPE TABLE OF sy-ucomm.
    PARAMETERS test(10) TYPE c.
    AT SELECTION-SCREEN OUTPUT.
      APPEND:
               'PRIN' TO itab,
              'SPOS' TO itab.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
           EXPORTING
                p_status  = sy-pfkey
           TABLES
                p_exclude = itab.
    You can deactivate Print and Save button.

  • How to get Default submit button of system form?

    Hi all,
    For system forms default button is not set so how will know which is the default button.
    By default all system forma have button UID "1" as default button for Employee master
    Button UID "1" is for cancel and "2" is for Add/Ok/Update.
    pl Guide,
    Atul

    Hi,
    Try This.....
    oform = sbo_application.Forms.GetFormByTypeAndCount("134", "1")
       MessageBox.Show(oform.DefButton)
    Thanks
    Shafi

  • Add customer button to check status screen

    hi everyone
    i'm quite new in developing srm and need your help.
    my customer wants me to put a new customer button on the check status web screen at item level which is supposed to work like the print button.
    so if i want to integrate this customer button do i have to modify the screen and html template? as far as i know there is no customer exit for this?!
    thanks in advance!

    Hi
    <u>Which SRM version are you using ?</u>
    <b>The addition of a new button for a new process means modification to standard screens, HTML templates used in the relevant Internet (Web) Services and the releavnt source code.
    Addition of button can only be done through ITS Template change.Please look in the Internet services say - BBP_BID_INV (for Bid Invitations) Or for service - BBPSC01 (shopping cart) for the exact template in whcih you want to add the button</b>
    <b>You have to define a new button in the screen and in the template. Then assign to it an OK_CODE and manage it in the PBO of the screen.</b>
    There is no BADI which can do this as this is not a SAP funtionality. You need to do a little bit of research on this to get the job done.
    <b>As a start step, You can use the BADIs - BBP_CUF_BADI and  BBP_CUF_BADI_2 to change the display from customer-defined fields to the SAP standard screen. This BAdI enables you to control whether the fields can be edited, and how they are displayed.</b>
    MODIFY_SCREEN method will Show/hide field display and restrict edit options.
    <u>For more information on BADI please go to SPRO -> BADI.
    OR View the information on BADI's.</u>
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    <u>Implement -  BADI - BBP_CUF_BADI (in SRM 4.0) to display a customized screen.</u>
    <b>Related link -></b>
    a new button required on shoppingcart screen
    <u>Hope above proves helpful to you.</u>
    Regards
    - Atul

  • [SOLVED] Extra Button in GNOME Status Menu

    Hello,
    I'm going to have to apologize right off the bat for this rather vague question, but I really don't have much to go on (yet). I've done a lot of Googling to try to figure this out but nothing has turned up so far.
    Now that that's out of the way, here's the problem:
    An extra button has shown up in my GNOME status menu. The image is a link to a (slightly) higher quality version. The button doesn't seem to do anything, except when I click it the icon changes to this:
    A second click restores the first icon, and the cycle repeats. I'm running GNOME 3.14, and the icon showed up a couple weeks back while I was having a DE install-fest and trying out Cinnamon and KDE. As far as I can tell, it showed up around the time I set those up, but that could also just be a coincidence. Now that that adventure is through, Cinnamon and KDE have been uninstalled and I've done my best to rm any remaining config files. My second Arch machine has no such button (and has only ever run GNOME). Honestly, it doesn't make any practical difference, so I ignored it at first, but its unexplained existence has come to disturb me.
    I've tried searching for others with a similar problem, looked at GNOME extentions that themselves add a button (such as https://github.com/arelange/gnome-shell … ate-status), and perused through the GNOME-shell source code in an attempt familarize myself with what was going on. I'm rather inexperienced with that sort of programming, so my endeavor was not as insightful as I had hoped. As a final act of desperation, I ran
    pacman -S gnome
    but of course, with no success. If anyone could point me in the right direction or offer suggestions, it would be very appreciated!
    Last edited by threeofsix (2014-11-02 05:04:57)

    Ahh, yes, I think you are right. In fact, my relatively old and bulky Acer 5742 does have an accelerometer (presumably for HDD shock protection?):
    $ cat /proc/bus/input/devices
    I: Bus=0019 Vendor=0000 Product=0000 Version=0000
    N: Name="Acer BMA150 accelerometer"
    P: Phys=wmi/input1
    S: Sysfs=/devices/virtual/input/input13
    U: Uniq=
    H: Handlers=event11 js0
    B: PROP=0
    B: EV=9
    B: ABS=7
    I checked and the bma150 module wasn't loaded, so I went ahead and loaded it and started waiving my 5.7lb laptop around like a madman. No screen rotation, and I'm not sure how to read the raw input from the device, but I'm sure there are a plethora of reasons GNOME might detect an accelerometer and put a button there even if it isn't designed for this sort of input or properly configured or supported. If that's the case, there's no need to figure out how to get rid of the button, but I am curious if other people have similar experiences or perhaps the opposite (you can see an accelerometer but no button) just for some level of certainty this is the correct explanation. For starters, my other machine that does not have the button also does not have an accelerometer listed in /proc/bus/input/devices.

  • Clearing the forms after default Save Button pressed

    HI,
    in forms 6i how to clear the form after the save button is pressed, ie the form uses default menu and smart bar. the user wants to clear the form once he selects save from the menu or after pressing the save icon...
    any idea...?
    regards
    Kris

    try on-commit trigger on form level through clear_form procedure but cursor remain stay on the same record
    I think your requirement is that when user commits a record a new blank record appear so also add "create_record" procedure ;
    .but u have to apply some logic on that trigger also it ever fires when user edit/insert/delete a record and commit;
    Hope it clears now!

  • Desactivate standard buttons in GUI Status

    We are looking to desactivate these standard buttons in the gui status.
    Button 1: Creates new session
    Button 2: Generates a shortcut on the desktop
    Button 3: Help
    Button 4: Customizing of local layout
    We thing that these buttons are set automaticaly by SAP. Is there a way to desactivate them. (SAP version 4.6C)
    Help Required,
    Best regards.

    Hello Daniel,
    It is not possible to do that. The reason is that these buttons are a part of the SAPGUI. They don't come from the application server - i.e., they don't have any function codes as such. So you wouldn't be able to disable them.
    Regards,
    Anand Mandalika.

Maybe you are looking for

  • I am receiving an alert message that reads: Could not initialize the application's security component.

    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close t

  • Open letter to Cisco regarding the UC320 platform

    Cisco, I have never in my life been exposed to a "production" piece of equipment with so many bugs, missing features and oddities as the UC320. While I am sure many of you are working hard to reign in the problems, this platform is an utter embarrass

  • 2499 error while executing a Oracle PL/SQL query

    Hi, Im a newbie, using Oracle 10g enterprise edition, netbeans 6.5. Im unable to execute a SELECT query which contains multiple JOINS & UNIONS(lengthening upto 3800 chars) through code hence It flashes SP2-0027: Input is too long (> 2499 characters)

  • Need help with adobe reader

    I cant install adobe reader, when I try my system locks up. I am useing windows xp

  • Non SD invoice in COPA reporting

    Hi Experts, I have a scenario for my customer. At present all the sales invoice data is coming to COPA thru condition types which are assigned to value fields. Now we are booking some invoices without SD module (normal FI invoice). How do we get this