Unwanted Tooltips on Push buttons with ~webgui 1

We are still using integrated ITS on ECC 6.0 and have recently implemented support stack 15, which messed up all of our table control.  By upgrading the service parameters below, we were able to fix the table control issues and the screen works fine.  However, when we put the mouse over the pushbuttons in the application, it shows our tool tip followed by "pushbutton deactivated".  The pushbuttons actually work fine and we tried changing our tool tip text in the screen, but whatever we put in always adds "pushbutton deactivated" to our wording on the screen.  Any idea where this might come from. 
We have tried to play with the SICF parameters and if we remove the ~webgui 1 the problem is eliminated, but then we have trouble with our toolbar, which none of the simple_toolbar parameters will seem to fix.
-Change the ~generateDynpro 1  to ~webgui 1
-Change the ~webTransactionType EWT  to                         ~webgui_simple_toolbar 128
-add ~webgui_theme sl
-add ~theme sl

this issue will be resolved with Support Package 16. To fix this error
on SP15 please open GUI_BUTTON.HTML in SE80, service WEBGUI, theme DM
HTML-Templates, search for
if (quickinfo!="")
tooltiptext = " title=\"" & strmask(quickInfo) & " " &
fcode2key(fkeyid) & " " & a11y_button_type & " " & #a11y_disabled &
else
if(buttonlabel!="")
tooltiptext = " title=\"" & buttonlabel_masked & " " &
fcode2key(fkeyid) & " " & a11y_button_type & " " & #a11y_disabled &
end;
end;
and replace with
if (quickinfo!="")
tooltiptext = " title=\"" & strmask(quickInfo);
tooltiptext = tooltiptext & "\"";
else
if(buttonlabel!="")
tooltiptext = " title=\"" & buttonlabel_masked;
tooltiptext = tooltiptext & "\"";
end;
end;
Please republish WEBGUI to site INTERNAL after changing this.

Similar Messages

  • When I try to download a free or purchased APP I get a box that says userID is disabled and a push button with "OK". I can't download any apps

    when I try to download a free or purchased APP I get a box that says userID is disabled and a push button with "OK". I can't download any apps

    Depending on why it's been disabled, you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your iPad then try logging out of your account on the phone by tapping on the id in Settings > Store and then log back in and see if that 'refreshes' the account on it

  • Can we develop cells or push buttons with increaseing number  auotmatically

    hi all
       I am customizing a sinario which contains different number of  flats in different appartments. Sianrio is to customize Flat nos. as a blocks. 
    So if we give no.of Flats in an Appartment, can we get blocks with numbering with increase order. Is it possible to develop Text areas or Push buttons in GUI programming.
    if so please explain me.
      For example :  if we give number 10  then it should dispaly 10 blocks.
    thankyou,
    regards
    Hanuma

    Not sure if you can dynamically create buttons on a screen, however, you could use an ALV Grid and show a number of "flats" per line and react to each one as a hotspot.
    i.e.  Put up to 10 flats on a line.  then read the line and determine the one pushed by Field Name.
    you may be able to create a button in each cell of the grid, and perhaps name each one individually.
    The crude way would be to put the max number of buttons on a screen and simply set unavailable "Flats" button to active.= 0.
    Edited by: Paul Chapman on Dec 5, 2008 2:09 PM

  • Screen still active whilst on call and I keep pushing buttons with my face, putting it on pause, facetime etc even cutting off call

    having problems when on a call, I keep touching the creen and pressing buttons, ie pause, facetime etc. have tried resetting the phone but makes no difference.
    Does anyone know what the problem is??

    Duplicate of
    https://supportforums.cisco.com/message/4174339

  • Problem With Push buttons on the selection screen

    Hi All,
    I've taken 3 push buttons on the selection-screen with the following syntax
    SELECTION-SCREEN: FUNCTION KEY 1,
                      FUNCTION KEY 2,
                      FUNCTION KEY 3.
    and have removed the F8 execute button using FM RS_SET_SELSCREEN_STATUS
    Now, the problem is i'm able to perform validations using At selection screen but the code after the Start-of-selection is not being triggered.
    I mean the processing is being terminated after the at selection-screen.could anyone please tell me how do i trigger some code after the event start-of-selection when a user presses a push button with sy-ucomm = FC01.

    Check the below sample program :
    REPORT ZLPRWINSPC_TMP .
    tables : mara,
             sscrfields.
    select-options s_matnr for mara-matnr.
    initialization.
    sscrfields-functxt_01 = 'Clear Selection'.
    selection-screen function key 1.
    AT SELECTION-SCREEN.
    case sscrfields-ucomm.
    when 'Clear Selection' or 'FC01'.
    clear s_matnr.
    refresh s_matnr.
    endcase.
    Thanks
    Seshu

  • How to get GUI Status(Push Buttons) in ALV Report

    Hi Friends
    I have a requirement in a way that:
    Once selection-screen was processed,an ALV report has to come and above the ALV List,I need a custom GUI Status(4 Push Button) with Push Buttons Logic.
    Once I had clicks on thesse push button,I need to display one more ALV List and above this List,again I need a custom GUI Status(2 Push Buttons) with Push Buttons Logic.
    Can anyone throw some light how we can achieve this.
    Thanks for your cooperation!
    Regards,
    Madisetty

    data: rt_extab type slis_t_extab,
            g_ucomm like sy-ucomm ,
            g_selfield type slis_selfield.
    form alv_display .
      call function 'REUSE_ALV_LIST_DISPLAY'
         exporting
         i_callback_program             = g_repid
         i_callback_pf_status_set       = 'PF_STATUS'
         i_callback_user_command        = 'USER_COMM'
           it_fieldcat                    = it_fldcat
          tables
            t_outtab                       = it_final1
      perform pf_status using rt_extab.
      perform user_comm using g_ucomm g_selfield .
    endform.  
    form pf_status  using    p_rt_extab.
      set pf-status 'PF_STATUS' excluding p_rt_extab.
    endform.
    form user_comm  using    p_ucomm like sy-ucomm
                             p_selfield type slis_selfield.
      data: l_row type i.
      case  p_ucomm.
        when 'DISPLAY_PO'.
          loop at it_final1 into wa_final1.
            if wa_final1-sel eq 'X' .
              l_row = l_row + 1.
            endif.
            if l_row gt 1.
              message e004.
            endif.
            clear wa_final1.
          endloop.
          p_selfield-fieldname = 'SEL'.
          read table it_final1 into wa_final1 index p_selfield-tabindex .
          set parameter id 'BES' field wa_final1-ebeln.
          call transaction 'ME23N'.
      endcase.
    endform.
    *create user interface for gui status by double clicking on 'PF_STATUS'.
    *Check the above sample code .

  • Increase the height of push button ?

    Hi,
    I want to increase the height of the push button in the selection screen in module pool. Please suggest.
    Thanks in Advance.

    Ya, the length can be increased. But.. Actually the problem is: there is a module pool program executing which a selection screen comes first. In the selection screen, there is a push button with some text written in it.
    I need to increase the size of the push button , as well as the Text size, so that the people viewing the screen from the distance, will be able to see the Text clearly.
    Please suggest some solution.
    Thanks,
    Saheli.

  • Text Items And Push Buttons Created on a customized form does not appear.

    Hi,
    I created a custom form and attached it to ebs. The form opens without any error.
    I had 3 text items and 2 push buttons with proper property class applied to them. But I am only able to see the prompt of the first text item. All the other widgets are not visible. What could be the possible cause for this.
    Deepak

    How are you running the form? Have you deployed it properly and attached it to a menu/form function and are viewing it within EBS?
    Did you open the TEMPLATE.fmb form and save a copy of it as the starting point for your custom form?
    --Johnnie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I change the color of the small LED inside a Push Button

    One of my colleagues managed to accidentally change the color of the LED inside the Push Button. He didn’t know how he did it and we couldn’t figure out how to change it back. It’s easy enough to replace the Push Button with a fresh copy from the Buttons & Switches pallet but I would like to know how to control this parameter. Does anyone know how to do this?

    Hi Bob,
    Could you help us help you?
    Please post a VI with the troubling pushbutton so we can see the issue.
    If you are talking about the LED shown in the attached jpg,
    that color can NOT be changed at run-time. Use the Paintbrush.
    Ben
    Message Edited by Ben on 10-14-2005 10:26 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Led.JPG ‏20 KB

  • [1]RE Buttons with Hotkeys.

    [1]RE>Buttons with Hotkeys... 4/17/96
    I will be out of town from 4/5 to 4/12. For issues concerning:
    TRACS - Please use the TRACS Support Beeper 973-5171
    Napa Migration - Paula Cue
    Regards,
    Jackie
    Date: 4/9/96 3:35 PM
    To: Jackie Lefton
    From: [email protected]
    Question...!
    Anyone out there know how you can create a push button
    with a hotkey?When I wanted to do this, I finally wound up creating
    menu items and assigning hot keys to the menu items
    (which does work). If one of your menu items has exactly
    the same function as your push-button, voila!
    Geoff
    ------------------ RFC822 Header Follows ------------------
    Received: by gateway.apple.com with SMTP;9 Apr 1996 15:30:51 -0800
    Received: from sagesun.Sagesoln.com ([206.80.24.106]) by
    federal-excess.apple.com (SMI-8.6/8.6.12) with ESMTP id PAA07215; Tue, 9 Apr
    1996 15:29:06 -0700
    Received: (from majordom@localhost) by sagesun.Sagesoln.com (8.6.12/8.6.9) id
    PAA00200 for forte-users-outgoing; Tue, 9 Apr 1996 15:23:02 -0700
    Received: (from uucp@localhost) by sagesun.Sagesoln.com (8.6.12/8.6.9) id
    PAA00195 for <[email protected]>; Tue, 9 Apr 1996 15:22:58 -0700
    Received: from uucp2.netcom.com(163.179.3.2) by sagesun via smap (V1.3)
    id tma000192; Tue Apr 9 15:22:44 1996
    Received: from forte.UUCP by netcomsv.netcom.com with UUCP (8.6.12/SMI-4.1)
    id OAA18373; Tue, 9 Apr 1996 14:06:01 -0700
    Received: from [192.104.236.126] (berts) by forte.com (4.1/Anterior/SMI-4.0)
    id AA02090; Tue, 9 Apr 96 13:54:45 PDT
    X-Sender: [email protected]
    Message-Id: <v02110100ad8fd6b193f7@[192.104.236.126]>
    Mime-Version: 1.0
    Content-Type: text/plain; charset="us-ascii"
    Date: Tue, 9 Apr 1996 01:58:05 -0700
    To: [email protected]
    From: [email protected] (Geoff Puterbaugh)
    Subject: Re: Buttons with Hotkeys...
    Sender: [email protected]
    Precedence: bulk
    Reply-To: [email protected]

    As your OS volume is a different volume to your RAID1 setup, reinstalling the OS will not affect the RAID1 setup.
    With regards to your phantom account, you could try peaking behind the scenes to see if you can find this account, then delete it (for real) and then see if it will let you recreate it. You would do this as follows
    Launch Workgroup Manager
    In Preferences make sure Show All Records and tab and inspector is turned on
    Click on the 'target' symbol on the left which is the inspector tab
    From the drop down menu select Users
    You will hopefully now see this missing account, select it, then delete it

  • Accelerator keys for push buttons

    Hi,
    Does anyone know how can I define accelerator keys for push buttons. with ALT+underlined char. can I directly execute the button? If yes, how can we do that?
    Regards,
    Panneer

    Hi,
    As I know, GUI XT could be used to change the screen style. The pushbutton command could be used to add pushbutton.
    But after checking the material, I found it could only use SAP predefined accelerator keys which is in the PF-STATUS.
    FYI:
    Pushbutton
    Purpose With Pushbutton you can create your own pushbuttons within an R/3 screen or within the toolbar. You can make both the menu functions and the navigation to other transactions directly accessible with your own pushbuttons.
    Example
    Pushbutton (10,50) "Split Screen Editor" "SCMP"
    You create a pushbutton at row 10, column 50 with text Split Screen Editor. Clicking on the button invokes the internal code SCMP which then starts the Split Screen Editor.
    Internal codes How do I find the internal codes?
    Choose the desired function in the transaction menu and press F1 while the mouse cursor points to this function. Now the R/3 system displays the internal function code in a pop-up window
    Format Pushbutton (row,column) "Pushbutton text" "FCode" Process="..." 
    Adds a pushbutton on position (row,column). The pushbutton invokes the internal code FCode. This can be a code from the menu, e.g. SCMP, or a transaction code like /NFB01 or /OMM02.
    Process="..."  relates to the InputScript file. You can omit the "fcode" parameter if only "Enter" is needed in order to continue with the transaction.
    Pushbutton (Toolbar) "Pushbutton text" "FCode"
    Adds a pushbutton in the application toolbar. A free function key is assigned automatically and displayed in the quickinfo.
    *Pushbutton (Toolbar) "Pushbutton text" "FCode" "Fkey"*
    *Optionally you can specify a function key of your choice as an additional parameter Fkey using the format F1,..F12, ShiftF1,...,ShiftF12, CtrlF1,...,CtrlF12, ShiftCtrlF1,...,ShiftCtrlF12. If this function key is already in use the system chooses the next available number.*
    *example: Shift+F5  ->  F17, F3 -> F3* 
    Cheers

  • How do I use a push button digital trigger with my 6034E DAQ board?

    I am only a Lab View toddler.
    I am currently using a push button, wired to PFIO/TRIG1 and DGND, with a anolog trigger. However noise is causing my program to be triggered. I was told that a digital trigger would help to reduce the random triggering. How do I create a push button digital trigger?
    Thanks

    implement a schmitt trigger.
    Struggling with Labview wrote in message
    <[email protected]>...
    >I am only a Lab View toddler.
    >I am currently using a push button, wired to PFIO/TRIG1 and DGND, with
    >a anolog trigger. However noise is causing my program to be triggered.
    >I was told that a digital trigger would help to reduce the random
    >triggering. How do I create a push button digital trigger?
    >Thanks

  • Pop up window with yes & no push buttons

    hi
    i want to display a pop up window with yes & no push buttons
    can anyone help for this

    Hi,
    call function POPUP_TO_CONFIRM
    exporting
    TITLEBAR = pop_up' (for pop-up header)
    TEXT_QUESTION = 'do you want to save data'
    TEXT_BUTTON_1 = 'Yes'
    ICON_BUTTON_1 = ' '
    TEXT_BUTTON_2 = 'No'
    ICON_BUTTON_2 = ' '
    DEFAULT_BUTTON = '1'
    DISPLAY_CANCEL_BUTTON = ' '
    USERDEFINED_F1_HELP = ' '
    START_COLUMN = 25
    START_ROW = 6
    POPUP_TYPE = ' '
    IV_QUICKINFO_BUTTON_1 = ' '
    IV_QUICKINFO_BUTTON_2 = ' '
    importing
    ANSWER = ANS
    OR.
    Use POPUP_TO_DECIDE.
    call function 'POPUP_TO_DECIDE'
           exporting
                defaultoption  = '1'
                textline1      = text1
                textline2      = ' '
                textline3      = text-202
                text_option1   = 'YES'
                text_option2   = 'NO'
                titel          = text-114
                start_column   = 15
                start_row      = 6
                cancel_display = ' '
           importing
                answer         = zanswer.
    hope this helps.
    plz take a look on this function modules also:
    POPUP_TO_CONFIRM_LOSS_OF_DATA Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.
    POPUP_TO_CONFIRM_STEP Create a dialog box in which you make a question whether the user wishes to perform the step.
    POPUP_TO_CONFIRM_WITH_MESSAGE Create a dialog box in which you inform the user about a specific decision point during an action.
    POPUP_TO_CONFIRM_WITH_VALUE Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.
    POPUP_TO_DECIDE Provide user with several choices as radio buttons
    POPUP_TO_DECIDE_WITH_MESSAGE Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
    POPUP_TO_DISPLAY_TEXT Create a dialog box in which you display a two line message
    thanx,
    dhanashri.
    Edited by: Dhanashri Pawar on Aug 19, 2008 2:20 PM
    Edited by: Dhanashri Pawar on Aug 19, 2008 2:25 PM
    Edited by: Dhanashri Pawar on Aug 19, 2008 2:26 PM

  • Issue with Icons display in PUSH BUTTONS in forms 11g

    Hello,
    This is regarding an issue with the icons background for the push buttons in the forms 11g. When we enable the icons for the buttons (.gif) they are visible on the
    top left corner of the buttons and not in the centre. In one of the forums it was written like this is a common problem in Forms 11g. Is there any way by which we can
    centralize this icons on the Forms buttons. Also I have heard that image editing tools can be used to centralize the icons. I tried with one of the tools but it seems
    like it is not working.
    Can somebody suggest a workaround for this?
    Thanks in Advance
    Ram

    I will assume you are attempting to use the images included in the Forms applet jar. These images are purposely structured so that the subject is off-centered. You should not see that same behavior if you use your own images or edit the ones built-in to Forms. However, keep in mind that the images packaged in the Forms applet jar are intended to be used in a menu toolbar and not custom buttons.
    For more information, refer to MyOracleSupport note 1391073.1 where I explain this in detail.
    Michael Ferrante
    Senior Principal Support Engineer
    Forms Global Technical Lead
    Oracle Corporation
    .

  • How to add push button in alv display with out class or method

    Hai,
    How to add push buttons in out put screen of ALV (tool bar) with out using classes or methods .I want to know using normal ALV .
    Thanks in advance .
    kiran

    You should post your question in the ABAP forum.
    ABAP Development

Maybe you are looking for

  • Virtual-directory-mapping + MS-Word MS-Excel

    Hi, I have created the following virtual-directory-mapping in my weblogic.xml <virtual-directory-mapping> <local-path>c:/zooi/temp</local-path> <url-pattern>/excel/*</url-pattern> <url-pattern>*.xls</url-pattern> </virtual-directory-mapping> Secondly

  • 103 Movement type GRN

    Hai Experts, I have one issue. I will explain my secenario please guide me if i am doing wrong... I used receive Solvent GRN, For this solvent first Quality person has to approve the material, then only material will be unloaded, utill & unless unloa

  • Retrieve username and password from Portal in external appl.

    Hi All, I have deployed an web application containing jsp into OC4J. I have registered this application as an external application in the portal. I need to capture the username and password required for the external application in the jsp (deployed a

  • How do I stop the email alerts

    How do I stop the email alerts from showing up on the top right of my desktop?

  • Doubts on Module Processor

    Hello All, What are Module Processors in XI? Where do we use them? Can anybody please send me some docu about this concept? //Priya//