Query en web labels and buttons

Hi all!!
I have this requeriment,
When i see the query in format web; we have this labels or buttons: bookmark, variable screen, exceptions and conditions, etc etc.... when i put the mouse on this buttons; appear a text that says: bookmark button, variable sreen button, exceptions and conditions button, etc....
Is possible to remove this messages???
I think that is necessary to change some standar code, but im not sure; I want to know what happend or if we have a note that mention this area.
Thanks in advanced,
Greetings,
Mónica

Hi
if I understand your requirement correctly, you r referring to the Tool Tips for buttons on Web.
You can turn off these in the XHTML code for the template , simply by removing the statement,
<bi:TOOLTIP value="XXXXX" />
Or in the property for the button group.
I hope this helps you,
Shakeel.

Similar Messages

  • Gui labels and buttons not showing...

    I am using Java to create a gui and so far I have everything working.
    But there is a section of code thats not working out and Ill post the whole file here (not very big) to let you guys see whats going on. The issue lies in the action listner where I state "if a text feild is empty, display the option pane, else show the following" and its not showing the labels and buttons.
    Help?
    package student.information.search;
    import javax.swing.JFrame;
    import java.awt.GridBagLayout;
    import javax.swing.WindowConstants;
    import java.awt.Rectangle;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import java.awt.ActiveEvent;
    import java.awt.Frame;
    import java.awt.GridBagConstraints;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import student.information.readonly.ReadOnlyStudentForm;
    public class StudentSearch extends Frame implements ActionListener
       JTextField textField = new JTextField();
       JFrame frame = new JFrame();
       JPanel contentPane = (JPanel) frame.getContentPane();
       GridBagLayout gridBagLayout = new GridBagLayout();
        public StudentSearch()
            gridBagLayout.columnWidths = new int[]{20, 0, 12, 137, 17};
            gridBagLayout.rowHeights = new int[]{26, 0, 6, 0, 20};
            gridBagLayout.columnWeights = new double[]{1, 0, 0, 0, 0};
            gridBagLayout.rowWeights = new double[]{0, 0, 0, 0, 1};
            contentPane.setLayout(gridBagLayout);
            JButton button = new JButton();
            button.setText("Search");
            button.addActionListener(this);
            contentPane.add(button, new GridBagConstraints(3, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
            textField.setColumns(8);
            contentPane.add(textField, new GridBagConstraints(3, 1, 1, 1, 0.0, 0.0, 768, 2, new Insets(0, 0, 0, 0), 0, 0));
            JLabel label = new JLabel();
            label.setText("Student Seach");
            contentPane.add(label, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
            frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            frame.setTitle("Student Search");
            frame.setBounds(new Rectangle(500, 0, 500, 320));
            frame.setVisible(true);
       public void actionPerformed( ActionEvent arg0)
            if (textField.getText().equals(""))
              JOptionPane.showConfirmDialog(null, "Please enter a value in the search feild", "Error", JOptionPane.OK_CANCEL_OPTION); 
            else
               //Show the text fields here and the user information. 
                 *  While there are students for this search, change the text fields to Name, Last Name and ID and have a button called
                 *  View that when clicked allows for you to view all that students information.
                JLabel firstName = new JLabel();
                firstName.setText("Label");
                contentPane.add(firstName, new GridBagConstraints(5, 5, 1, 1, 0.0, 0.0, 768, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel lastName = new JLabel();
                lastName.setText("Label");
                contentPane.add(lastName, new GridBagConstraints(3, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel studentID = new JLabel();
                studentID.setText("Label");
                contentPane.add(studentID, new GridBagConstraints(1, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JButton viewStudentInformation = new JButton();
                viewStudentInformation.setText("Search");
                viewStudentInformation.addActionListener(new ActionListener()
                        public void actionPerformed(ActionEvent e)
                               //For viewing individual student information
                                new ReadOnlyStudentForm();
                contentPane.add(viewStudentInformation, new GridBagConstraints(7, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
    }

    In general when adding or removing components for a visible GUI you need to use:
    panel.add(...);
    panel.revalidate();
    panel.repaint();

  • Japanese indication of Label and Button is strange in Android5.0.1.

    A screen of attachment is Label, TextArea, Button in turn from the top.
    TextArea is normally indicated, but all hiragana, katakana and kanji aren't shown to Label.
    Hiragana and katakana aren't shown to Button.
    Nexus7(2013) Android5.0.1 AIR15.0.0.381
    AIR Simulator

    Hi Ankit,
    Not sure if this is a right place to raise, I also found that the Spark Label is not rendering Chinese characters correctly. Attached is a screen shot for your reference.
    Testing Environment
    Android 5.0.1
    Apache Flex 13
    Adobe AIR 15
    The same application works well on Android 4.x.
    Cheers
    Vicker

  • Label and Button in VBox, how to dynamically insert something between them?

    I'm probably missing something simple here, but scratching my head. If I have a VBox with a label and a button in it, is there no way to insert a new child between the other two children ? Something like a way to get at "nth child"? or "insertAtIndex" ? Most likely I am just thinking about this wrong-headedly. Thanks.

    ah, so .add() takes an int which determines the position among the children in which it will be inserted? I knew I was completely missing something critically simple. Thank you.

  • Applet label and button attributes being reset.

    Using JDK 1.4 through 1.6, IE6, JBuilder 2005
    I have an applet with a panel that displays the status of external devices and allows the device status to be changed. Here is a brief description.
    The applet has a class that extends JPanel.
    The panel has a set of JButtons that display a color representing the state of the device and text that shows the button action (Open or Close). By default, the JButtons are Green with text = "Open". These are initialized in the init() method of the class that is called only once when it is initialized.
    The panel display class has one method of interest:
    setDeviceStatus() - updates the color and text of the JButtons.
    This is the ONLY ways these components can be changed outside the init() method of the class.
    The method has a System.out.println() statement immediately before any change in text or color.
    There is a simulator applet that is used to send messages via sockets to the display applet.
    Here is what happens.
    1) Applet and panel are initialized correctly.
    2) Simulator applet sends message to update the color and text of a JButton
    3) The message is recieved by the display applet and the setDeviceStatus() method is called.
    4) The print statements before the setText() and setBackground() methods of the Jbuttons are called and new states printed.
    5) Color and text changes on the JButton to Red and Close.
    6) Cursor is moved from JButton and JButton focus is lost.
    7) JButton color and text revert to initial default state of Green and Open.
    There is only ONE call to the setDeviceStatus() method. This call updates the color to RED and text to CLOSE.
    As soon as focus is changed, the display updates to initial values WITHOUT calling the setDeviceStatus() method.
    The behavior is different in JDK 1.4 and 1.6
    JDK1.4) The text and background color change back after focus is lost by either:
    a) Clicking on another window.
    b) Creating an expose event by hiding and redisplaying the applet
    JDK1.6) The text and background color change back after the cursor is moved off of the button.
    CAN ANYONE EXPLAIN HOW TO KEEP THE UPDATED STATUSES????

    Hi Denes,
    I' paste it here ...
    <br><br>
    <table class="t10Button" cellspacing="0" cellpadding="0" border="0" summary=""><br>
    <tr><br>
    <td class="t10L">&lt;a href="#LINK#"&gt;<img src="#IMAGE_PREFIX#themes/theme_10/button_left.gif" alt="" width="4" height="24" /&gt;&lt;/a&gt;</td><br>
    <td class="t10C">&lt;a #BUTTON_ATTRIBUTES# href="#LINK#">#LABEL#&lt;/a&gt;</td><br>
    <td class="t10R">&lt;a href="#LINK#"&gt;<img src="#IMAGE_PREFIX#themes/theme_10/button_right.gif" width="4" height="24" alt="" />&lt;/a&gt;</td><br>
    </tr><br>
    </table><br>
    does this work ...?
    -Carsten
    Message was edited by:
    carstenczarski

  • How do display array of labels and buttons in JSplitPane

    Helloo
    Iam doing doing project on swing. I want to display an array of JLabels in JSplitPane. That to the leftside of the JSplitPane. On Right side Array of Jutton Please can any body solve my problem.
    regards
    sonali

    Hi Sonali,
    If u wish to add JLabel and JButton in the following manner
    label
    label
    label
    label
    why not try using GridLayout for each of the panel in the splitpane.try setting gridLayout(0,10) assuming that u have 10 labels.Then add those to the panel which is added to the SplitPane.
    Hope this gives u an idea.
    Cheers :)
    Nagaraj

  • Query as a Web Service and In List

    Hi,
    Here is my scenario (Xcelsius 2008 Enterprise SP2):
    - List builder object which returns multiple values
    I want to use those values to filter a Query as a Web Service data connection (to BW based universe). How is that possible?
    My web service contains a Filter defined as <Dimension> In List <Prompt>
    I have tried the following:
    1) Selected multiple rows in the Input Values/Read From section of the connection
    2) Tried to concatenate the individual values using ; and , and then passing the concatenated values to the Read From section of the connection (as one cell)
    1) works fine as long as I just select one value, but when I select multiple values, only the first one is used to filter the QaaWS
    2) Does not work
    Any ideas/suggestion on how to solve this?
    Thanks in advance,
    Jacob

    Hello David,
    I tried this feature of BI Services through WebI Rich Client. But I am having problem with sending values for Prompts using Xceslius. Below is the procedure I followed in developing a report and using BI web service to connect to Xcelsius.
    1) Build a report in Web Intelligence rich client along with Query filters (Inlist, Optional Prompts).
    2) Activate BI Service and publish the block after exporting the file.
    3) Use the WSDL URL to connect to Xcelsius from Data Connection (Add as Query As Web Service and Import it).
    4) Method: Get_ReportBlock_<Block name>,
        set input values <Enter_value_s_for_prompt>
            i) Valueofprompt (bind to single values, hard coded)
           ii) Index (leave blank, not binded)
    5) set <refresh> as 1 (or true) and <getfromlatestdocumentinstance> as 0 (false)
    6) Bind the output values to excel and pull a scorecard component to view the data.
    7) Preview the dashboard and now I get this error
                    Cannot Access external Data: String index out of range: -1
    When I remove both the values inserted in step 5, I get complete data (prompt is not applied). I also have a doubt whether I can pass multiple values for the prompt without using + sign to duplicate the Prompt.
    From some of the previous posts I came to know about Value formatting compatibility issue between BI Services and Xcelsius. Which is addressed with two fix packs
    1) XI 3.1 SP2.5 (available since last March) for WebIntelligence Rich Client & BI Services, and
    2) Xcelsius 2008 SP3.1 (available since last April).
    Are these the up to date Fix packs available and will they solve my problem?
    Where can I download them from (SAP Market place)? or from our SAP service consultant?

  • Swing Labels and IE 5.0

    Has anyone had any problem with IE 5.0 and using Swing Labels
    and Buttons. My labels keep getting cut off using IE5.
    For example : I have a JLabel with text = "Customer Name". It
    looks fine in Jdeveloper. When I deploy it to IE5.0, I
    get "Custom..." with the rest being cut off.
    Any Ideas ?
    Thanks in advance
    Greg
    null

    To see what's going on in the virtual machine you can check "enable java console" in the internet options>advanced. Then you can bring up the console in the view menu (I think). See if the virtual machine throws a NoSuchMethodError. If it does, it's all microsofts fault, as usual. (IE5 uses java 1.1.4, can you believe it?!)

  • HOW TO CHANGE PROGRAMATICALLY LABELS OF BUTTONS AND ...

    I want to do a HTMLDB application is some languages that user choice in web page.
    I have resolve good how to change messages in pages, but I need to know how to change , labels in buttons, reports and in items.
    ¿How I can do this? Change this by program.
    Any help wellcome.
    Thanks in advanced.
    Regards everybody.

    Hi,
    Normally, to translate your entire application you would export the application using Shared Components=>Translation Services. There is documentation on how to do this:
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14303/global.htm
    You can also use Shared Components=>Manage Messages to translate individual items. If this is what you want, please let me know and I'll let you know what I did to achieve this.
    Normally, the user would select their preferred language using a browser setting. Do you intend for them to select a language on a page?
    Regards
    Andy

  • When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)

    When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)
    I have attached the url of the unwanted site.

    Use this add-on [https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab/ '''Custom new tab'''].

  • I am web developer and I found that safari latest version 8.0 donot support tabindex for input type radio, checkbox and button.,

    Hi,
    I am using safari 8.0 on latest mac system. I am web developer. My website do not support keyboard tab button for some of html controls for safari  8.0. I have apply  tab index for these controls( input type="radio" ,check box and button tag).
    Please help me to resolve this problem.
    Thanks

    Post a link to your webform with these controls
    I am unable to test on Safari 8.x, but have you tried changing the UserAgent from the Developers Tools menu? My UserAgentSwitcher for Firefox only goes up to 7.xx Mavericks, but Safari's should be backwards 'compatible' a very long way.
    I am unsure whether you cannot TAB between these controls (normal browser behavior) or whether you have some special code that "SELECTS" each control as you go through them? The latter seems unworkable for any scenario I can imagine - if I want to select something I have brought into focus, the normal action would be to press the ENTER key while control or link is focused, then TAB on through choices to the next selection to be made
    Please clarify what exactly the problem is (for *me* at least)
    ÇÇÇ

  • Unable to do Drill by in webi report and source is BW Query

    Hai All,
    I have Dimension ID and Description Columns, when i try to drill one by one it  is working fine and it is showing descriptions accordingly. when i use Drill By on Dimension ID it is working for ID only but Description are not changing accordingly.
    Source is BW QUERY->universe->Webi report

    Hai
    Check these Links
    http://www.youtube.com/watch?v=rfT93enl1xw
    http://howtobi.wordpress.com/2010/11/27/drill-down-and-drill-across-in-webi/
    http://businessintelligence.ittoolbox.com/groups/technical-functional/businessobjects-dev-l/drill-down-option-in-web-intelligence-reports-1077058
    http://www.forumtopics.com/busobj/viewtopic.php?t=17203
    http://www.youtube.com/watch?v=ZuekboIdXk0
    http://www.forumtopics.com/busobj/viewtopic.php?t=33909&sid=d04b3e697f55ad8e4c461514067b87d4
    I Hope it willl Definately Help u

  • User saves query view (web) with changed layout and opens default layout...

    Hi Guru's,
    We are implementing the new (7.0) web template and the portal. One of my users is experiencing the following:
    He runs a webquery, changes the layout in the desired format and does a save as in both My Portfolio/Bex Portfolio.
    When he opens this "changed" view (both My Portfolio, Bex Portfolio) the default format/layout is openened.
    When i open the view he created in Bex Portfolio i do see the changed format/layout ...
    We put an authorization trace on his uid -> no result. Went through the loggings both on ABAP as well as Java stack -> no result.
    Has anyone an idea what is happening.
    Regards,
    René

    Second attempt.
    Has anyone a clue or experienced the same?
    I am not able to reproduce the issue with a copy user with same authorisation.
    The issue also appears if more (mine) authorisation is granted to the user. I am not experiencing this issue
    Regards,
    René

  • Transport Webi Reports and Web services as the backend of dashboards from BO Production to BO Development system

    Hello Experts,
    I am working on SAP BO 4.1. I have made several dashboards on top of web services ie;Web Service Method. I have 2 systems in BO ie; Development and Production Systems.The BW production system is connected to BO Development and Production both.
    The Webi reports are made on top of BI BEx Query. From the webi reports, BI Web Services are made on top of which the dashboards are made further.
    The Webi Reports, Web Services and the Dashboards everything is made directly in BO Production.
    My question is, Can I transport the Webi Reports and the Web Services from BO Production to BO Development?
    And If yes, will it have any other impact on webi reports, web services or dashboards?
    Thanks & Regards,
    Alfred Thomas

    Hi Gill,
    As per your reply,with the promotion managament i have make the web services again manually in Dev system...Right?
    Is there any way possible that i can transport the webservices and the webi reports usind Query AS A Web Service Designer. And if yes, through this QAAWS will the WSDL or the URL required for the web services in the connection button in dashboards will automatically updated or changed as per the Development System?
    But i am not able to enable the "Deploy to Other servers Option" in QAAWS.
    Can you please help?
    Regards,
    Alfred thomas

  • Calling a BW Bex Query in Web Dynpro ABAP

    Hi Team,
    I'm trying to call a BW Bex query in my web dynpro screen. The Web Dynpro is written in our ERP (ECC 6.0) system. I have specific parameters and values in my web dynpro context which I want to pass to a BW query and then display the actual query in my web dynpro. I found an element BIApplicationFrame but don't know if that is the correct way to display the query. Some questions:
    1) How do I pass the username/password for the BW system in the Web Dynpro written in ERP?
    2) How do I pass the parameters to the query
    3) How is the security and roles managed. The web dynpro is enables as an iView in the SAP Portal.
    Thanks much for your guidance.
    Regards
    Sanjay

    Petr:
    I managed to pass the selection variables to the query through BIApplicationFrame. This is how I did it.
    1) Added the BIApplicationFrame UI element to the View of the Webdynpro application and named it ZBIQUERY with the following properties relevant to my system.
    - dataProviderStateName property is set to my query name which is 'ZPUR_M02_Q08'
    - dataProviderStateType is set to 'Query'.
    - server is set to 'housapdbw.noble.cc:8000'
    - templateId is set to 'ZPUR_M02_W02'
    - variableScreen is Unchecked.
    2) Added two attributes to the view under the attributes tab. They are
    M_APPL_FRAME RefTo CL_WD_BIAPPLICATION_FRAME
    M_METHOD_HANDLER RefTo IF_WD_BI_APPLFRAME_METHOD_HNDL
    3) Then add the following code in the method WDDOMODIFYVIEW.
    data:
    lt_parameters type if_wd_bi_applframe_method_hndl=>tt_name_value,
    ls_parameters type if_wd_bi_applframe_method_hndl=>t_name_value.
    define add_parameter.
    clear ls_parameters.
    ls_parameters-name = &1.
    ls_parameters-value = &2.
    append ls_parameters to lt_parameters.
    end-of-definition.
    if first_time = abap_true.
    wd_this->m_appl_frame ?= view->get_element( 'ZBIQUERY' ).
    wd_this->m_method_handler ?= wd_this->m_appl_frame->_method_handler.
    endif.
    Please note that the selection screen on my query has Select-options and its name is
    XREF_NUM0001. I am passing a value of '11111' to it as shown below.
    refresh lt_parameters.
    add_parameter 'CMD' 'PROCESS_VARIABLES'. " This is for Execute button
    add_parameter 'SUBCMD' 'VAR_SUBMIT'. " This one also for Execute Button
    add_parameter 'VAR_NAME_1' 'XREF_NUM0001'. " Name of my select-option
    add_parameter 'VAR_OPERATOR_1' 'EQ'.
    add_parameter 'VAR_SIGN_1' 'I'.
    add_parameter 'VAR_VALUE_LOW_EXT_1' '11111'. " Value for my select-option
    wd_this->m_method_handler->execute_command( lt_parameters ).
    endif.
    The above code needs to be added before the view is called in th is method.
    Hope this helps.
    Krishna Muppavarapu

Maybe you are looking for

  • How do I restore my phone from a back on icloud

    I had trouble updating to OS6. I had to restore my phone but when it asked which back up to use it didnt offer the cloud. How do I get it to restore my phone from the cloud

  • How can I typing other language in IMAC?

    Like i said how can i typing other language in my imac..? I want to type chinese... But my Imac was chose English..

  • Video audio stops after like 20/30 sec

    Hey, I got videos on my ipod video 60 gb I'm sure they work fine because they worked fine when I just put them on. But after a while when I installed the new software the audio stops after 20/30 sec. It likes freezes for half a second and the audio s

  • System refresh error

    Hi I am facing some issues while doing system refresh in ECC6. Solaris 10 Oracle 10g ECC6,(JAVA+ABAP) on one system. I have followed given below steps 1) Perform dboracopy 2)Master-DVD->sapinst->LifeCycle -> oracle-> system copy-> oracle-> o-> centra

  • BranchCache In Distributed Mode

    Is they a way to know from what peers a system got it's content from?