Combo Box choices hide or show buttons

I am trying to have different pictures display when different choices are made in a combo box.  I have made the pictures images on different buttons.  The Combo Box name is "Ribbon"  .  Under one of the button images is this script.
var target =
this.getField('Ribbon');
cBox.value = ('RIBREG').Display=display.hidden; cBox.value = ('RIBFOIL').Display=display.visible;
meaning if RIBFOIL was chosen this button would display
Of course it is not working.  Any input would be greatly appreciated.
Thanks!

Good Morning,
cbox.value is the Combo Box seletion.  I finally did get this to work . The below code is posted under the combo box instead of the actual image.
Thanks for your reply!
if(event.value == 'RIBREG'){
this.getField('Image Rib 1').hidden = true; //
this.getField('Image Rib 2').hidden = false; //
if(event.value == 'RIBFOIL'){
this.getField('Image Rib 1').hidden = false; //

Similar Messages

  • Cany you link a combo box to a submit form button?

    This question pertains to Adobe Acrobat 9 Standard.
    On my form, I have a combo box that lists 5 names and a button that I want to use to submit the form via email. 
    Based on the combo box selection, I want the submit button (when pressed) to submit the completed form directly to the email address that corresponds to the name selected.
    Is there a way to do this?
    Any help will be greatly appreciated!

    The Industry combo box contains the following keystroke script:
    // Custom Keystroke script for combo box
    (function () {
    if (!event.willCommit) {
    // Set up an array for arrays of industry corresponding to export values in this combo box
    var aIndustry = [];
    aIndustry[0] = ["--"]
    aIndustry[1] = ["Jen H"];
    aIndustry[2] = ["Al M"];
    aIndustry[3] = ["Steve T"];
    aIndustry[4] = ["Al M, Jen H, Steve T, Glen P"];
    aIndustry[5] = ["Al M"];
    aIndustry[6] = ["Al M"];
    aIndustry[7] = ["Steve T"];
    aIndustry[8] = ["Jen H"];
    aIndustry[9] = ["Glen P"];
    aIndustry[10] = ["Al M, Jen H, Steve T, Glen P"];
    aIndustry[11] = ["Steve T"];
    aIndustry[12] = ["Al M"];
    aIndustry[13] = ["Jen H"];
    aIndustry[14] = ["Jen H"];
    aIndustry[15] = ["Al M"];// Get the export value of the selected item
    var ex_val = event.changeEx;
    // Populate the combo box field with the industry
    getField("BD Executive").setItems(aIndustry[ex_val]);
    When one of the 15 industries are selected, the Executive field automatically populates with one of four names (or, in two instances, all four names).
    Let's say I choose Construction as my Industry.  The Executive field automatically has Jen H's name.
    When the form is complete and I click the Submit Button, I want it to submit the form by e-mail directly to Jen H.
    So do I have to enter a script somewhere within the Executive field or the Submit Button field?
    Please excuse my ignorance.  I'm very, very new to this.
    Thanks again for everything!!!

  • Hide and show button

    hi , i want when i click on show button then the show button hide and the hide button show , and vice versa , how i will do that through java script or any method plz help

    Hi little foot ,
    I am using apex 4.0
    can you tell me how to make the hide and show region to open it on sidewise now its opeing in downwards direction can you tell me .
    Thanks & Regards.
    Shadab

  • Combo Box Choice Calculation

    I have 3 fields. 
    Field 1 is a combo box that provides the choice BZ7 or BZS.
    Field 2 is a text box (Monthly Gross) that calculates another boxes "Base Salary" * 26 pay periods for BZ7.  I want it to be set up so that If i choose BZS that calculation will change to 24 pay periods and for BZ7 the 26.

    You can set these numbers as the Export Values for each of the options in the combo-box, and then simply use the built in Product calculation option to multiply the value of the combo-box with the "Base Salary" text field.

  • How to hide and show button based on if row is selected in tabular form

    Hi,
    Im pretty new to apex. I am using version 4.1. I have a tabular form and what i want to do is only have the delete button show if i select a row from the [row selector] column. Can this be done using a dynamic action? I have tried it that way unsuccessfully. Please help or let me know if you need any more information.
    Thanks

    Do you mean if the check box is selected in the row?
    Assign a static ID to the delete button, e.g. MY_DEL_BTN. Look for "Static ID" under the Attributes section of the button.
    If so, make an advanced Dynamic Action based on Click and a jQuery selector. Usually, this element is name "f01" but, you need to make sure. Assuming it is "f01" then your jquery selector would be:
    input[name="f01"]set the event scope to live.
    Your dynamic action will fire JavaScript. (BE SURE TO UNSELECT FIRE ON PAGE LOAD). To make sure you have the right jQuery selector, at first just put a pop up message in the JavaScript.
    alert('You Clicked the Row Selector!');Run the page. Click the row selector. If you get the pop up you have specified the jQuery selector correctly. Yay!
    Then, assuming the above is correct. You can now determine if any have been selected.
    Now, set it back to SELECT TO FIRE ON PAGE LOAD (You want the delete to be hidden when you first open the page).
    Change your JavaScript to this:
    var checkedCnt = $("input:checked").length;
    if( checkedCnt > 0 )
       $('#MY_DEL_BTN').show();
    else
       $('#MY_DEL_BTN').hide();
    };-Joe

  • Update Combo box choice

    I have written the below code. When "Equipment1_combo" is selected, the respective choice will be update into the "Equipment1_pcs". E.g. if I chose "Racket", it show the quantity from 0 to 12 (assume that the equipment_inventory dB have 12 as quantity of racket).
    <%
    Connection dbcon2;
    Statement statement2;
    Statement statement3;
    ResultSet rs2;
    ResultSet rs3;
    //connect to DB
    try
    String driver2 = "com.mysql.jdbc.Driver";
    String dbURL2 = "jdbc:mysql://localhost/fyp";
    Class.forName(driver2).newInstance();
    dbcon2 = DriverManager.getConnection(dbURL2);
    System.out.println("Connection to database is successful");
    catch(ClassNotFoundException e)
    System.out.println("Database driver could not be found.");
    System.out.println(e.toString());
    throw new UnavailableException(this, "Database driver class not found");
    catch(SQLException e)
    System.out.println("Error connecting to the database.");
    System.out.println(e.toString());
    throw new UnavailableException("Cannot connect to the database");
    statement2 = dbcon2.createStatement();
         rs2 = statement2.executeQuery("SELECT DISTINCT CATEGORY from EQUIPMENT_INVENTORY ORDER BY CATEGORY ASC");
         statement3 = dbcon2.createStatement();
         rs3 = statement3.executeQuery("SELECT QUANTITY from EQUIPMENT_INVENTORY where CATEGORY='"+request.getParameter("Equipment1_combo")+"' ");%>
    <p><b>Reserve Equipment </b></p>
    <p><b><i>Equipment 1</i></b>   
    <select name="Equipment1_combo">
    <% while (rs2.next()) {%>
    <option value = "<%=rs2.getString("Category")%>"><%=rs2.getString("Category")%></option>
    <%}%>
    </select>    No. of pieces   
    <select name="Equipment1_pcs">
    <% while (rs3.next()) {%>
    <option value = "<%=rs3.getString("Quantity")%>"><%=rs3.getString("Quantity")%></option>
    <%}
    rs3.close();
    %>
    </select></p>

    Right then.
    JSP is a server side language. All the code gets run at the server, and returned to the client as an HTML page. The only method of communication you have to the server is by submitting an html form.
    Therefore jsp code can not react to events on the form such as selecting an item from the list directly.
    There are 2 options
    1 - javascript - handles client side interaction with a web page - use javascript/vbscript to change the values in the combo.
    2 - when they select an item in the list, resubmit the form with that parameter, and generate the jsp accordingly (ie reload the page)
    This is not an uncommon question. Do a quick forum search and you come up with plenty of related posts
    Check out these links
    http://onesearch.sun.com/search/developers/index.jsp?col=devforums&qp=&qt=combo+jsp+javascript+select+dynamic
    http://forum.java.sun.com/thread.jsp?forum=54&thread=203309
    http://forum.java.sun.com/thread.jsp?forum=45&thread=145694

  • Hide and show button at the top or at the end of the form

    Hi,
    I have the form that has 2 buttons, move up and move down, which is used to move the subform up or down. I currently have it to pop up a message: "The current item can't be moved up" when the user try to move that item up since they are already at the top of the form
    or "The current item can't be moved down" since they are already at the bottom of the form.
    Now I'd like to have one to be hidden depend on where on the current location instead of the pop up message.
    Can any one please advise.
    Thanks in advance,
    Han Dao

    Hi Naill,
    Here is the code that I try to place in the layout:ready event but it does not seem to work. Can you please take a look at it.
    ==============The Code=============
    form1990.Questions.MoveSub.up::ready:layout - (JavaScript, client)
    //Move Up
    if (xfa.resolveNode("form1990.Questions").index != 0) {
      var nIndexFrom = xfa.resolveNode("form1990.Questions").index;
      var nIndexTo = xfa.resolveNode("form1990.Questions").index - 1;
      _Questions.moveInstance(nIndexFrom, nIndexTo);
      xfa.form.recalculate(true);
    } else {
    // set the button to hide at the top of the form.
      xfa.resolveNode("form1990.Questions.MoveSub.up").presence = "hidden";
    form1990.Questions.MoveSub.down::ready:layout - (JavaScript, client)
    //Move Down
    var nIndex = form1990.Questions.index;
    if ((nIndex + 1) < _form1990.Questions.count)
    var nIndexFrom = nIndex;
    var nIndexTo = nIndex + 1;
    _form1990.Questions.moveInstance(nIndexFrom, nIndexTo);
    xfa.form.recalculate(true);
    else
      xfa.resolveNode("form1990.Questions.MoveSub.down").presence = "invisible";
    ===========End ========
    Thanks,
    Han Dao

  • Trying to update table based on combo box choice

    Hey all,
    I have taken over code someone has created and it is confusing me what they have done. the code uses an abstracttablemodel to create the table (and i assume, fill the data). I can't for the life of me, figure out how the data is loaded. Can someone tell me what is happening. also, what would be the easiest way to update it to only show that info that matches the criteria? I will post what i think is relevant code, but if i am missing something, i will be happy to throw it in there. Here's the code:
    public class ABMD extends JPanel implements ActionListener
    private JTable table;
        private TableSorter sorter;
    public ABMD()
    sorter = new TableSorter(new ABMDTableModel());
            table = new JTable(sorter);
            sorter.setTableHeader(table.getTableHeader());
            ListSelectionModel rowSM = table.getSelectionModel();
            rowSM.addListSelectionListener(new ListSelectionListener()
                public void valueChanged(ListSelectionEvent e)
                    if (e.getValueIsAdjusting()) return;
                    ListSelectionModel lsm = (ListSelectionModel)e.getSource();
                    if (lsm.isSelectionEmpty())
                        viewDataButton.setEnabled(false);
                        getDataButton.setEnabled(false);
                        removeDataButton.setEnabled(false);
                    else
                        int selectedRow = sorter.modelIndex(table.getSelectedRow());
                        PlanData currentPlanData = (PlanData) planArrayList.get(selectedRow);
                        if (!currentPlanData.getPlanListLoaded())
                            getDataButton.setEnabled(true);
                            viewDataButton.setEnabled(false);
                            removeDataButton.setEnabled(false);
                        else
                            getDataButton.setEnabled(false);
                            viewDataButton.setEnabled(true);
                            removeDataButton.setEnabled(true);
                        String desc = "";
                        desc = currentPlanData.getUniqueID();
                        descTextAreaValue.setText(desc);
    class ABMDTableModel extends AbstractTableModel
            private String[] columnNames = {"Plan Local",
                    "OPLAN",
                    "Air Defense Plan",
                    "Planning Period",
                    "Defense Design",
                    "Published Date"
            public int getColumnCount()
                return columnNames.length;
            public int getRowCount()
                return planArrayList.size();
            public String getColumnName(int col)
                return columnNames[col];
            public Object getValueAt(int row, int col)
                PlanData planData = (PlanData) planArrayList.get(row);
                switch(col)
                    case 0:
                        return Boolean.valueOf(planData.getPlanListLoaded());
                    case 1:
                        return planData.getOplan();
                    case 2:
                        return planData.getAirDefensePlan();
                    case 3:
                        return planData.getPlanningPeriod();
                    case 4:
                        return planData.getDefenseDesign();
                    case 5:
                        return planData.getPublishedDate();
                throw new IllegalArgumentException("Illegal Column: " + getColumnName(col));
            public Class getColumnClass(int c)
                return getValueAt(0, c).getClass();
            public boolean isCellEditable(int row, int col)
                return false;
    }

    I can't for the life of me, figure out how the data is loadedLooking at the get value method we see:
    PlanData planData = (PlanData) planArrayList.get(row);Therefore the data is store in the "planArrayList". So the data is loaded whenever you add data to that ArrayList.

  • Disabled combo boxes don't display properly after loading a movie.

    Hi,
    I have a main movie that contains some combo boxes. Some of them may be disabled.
    By pressing a button I load another movie using loadMovie. The loaded movie also contains combo boxes.
    When the button is pressed, the clip that shows the combo boxes is removed from the stage and the loaded movie is displayed. By pressing another button, the loaded movie is unloaded and the clip with the combo boxes is displayed again.
    Well, once the other movie has been loaded, when I go back to the clip with combo boxes, the disabled combo boxes have a small gray button covering the black down arrow.
    I have determined that so long as the loaded movie contains combo box in the library, the problem occurrs, even if there is no actual instance of it.
    The combo boxes that are not disabled are not affected. The combo boxes are disabled by setting "cb_name.enabled=false".
    If the combo box is enabled, it displays correctly, but if disabled again, it goes wrong again.
    My project is targeting Flash 8, so it uses AS2.
    I'm using Flash CS4.
    This is a very simple example I did to make sure I wasn't doing anything funny:
    Initially:
    After pressing the button:
    After pressing the other button:
    The behaviour in a web browser is the same...
    I hope someone can help me with this. Thanks in advance!

    Thanks for the response.
    The "Load the movie" button:
    on(click)
        _parent.gotoAndStop(2);
    The 2nd frame:
    loadMovie("Test another child.swf",Container);
    stop();
    The "Unload and go back" button:
    on(click)
        unloadMovie(_parent.Container);
        _parent.gotoAndStop(1);
    Container is a movieClip with a dark gray square shape the size of the movie clip that is loaded. It doesn't exist on frame 1, only on frame 2.
    The combo boxes are inside a movie clip, and this is only on the stage on frame 1.
    This and the captures belong to a very simple test I did. If there is a way of posting files, I can post a zip file with the two .fla and the two .swf.

  • CUIT is not giving name property value for VB combo boxes

    Hi Everyone,
    We are testing simple Vb6 controls using CUIT. Using CUIT we can get name property value of Vb6 button control. But for simple Vb6 combo box, CUIT is not showing name property value.
    I want to add CUIT assertion for combo box name property value. how can I add ?
    For more details please see the image
    Regards,
    Rajendar..

    Hi Rajendar,
    Do you record a coded UI test with the coded UI test builder? If so, which item did you record?
    >>How can I get combobox.SelectedItem without identifying combo box?
    It doesn't mean that we don't identify the control. Generally we use the unique property as the search property to find/capture the control.
    Like this blog here:
    http://blogs.msdn.com/b/visualstudioalm/archive/2012/02/01/guidelines-on-improving-performance-of-coded-ui-test-playback.aspx
    SelectedItems versus
    SelectedIndices property
    For large number of items, it is preferable to use SelectedItems. SelectedIndices essentially does an Instance search internally, which is slower compared to unique automation property based search. Use SelectedIndices only when
    the items don’t have unique Automation properties. And of course exercise caution over changes to the list content.
    I think you could get a useful sample here:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/a32bc4a6-f562-436d-96a4-a3409b1b3e73/codedui-and-combobox-i-want-to-go-to-the-next-nonselected-item-in-combobox?forum=vstest
    Best Regards,
    Jack
    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.

  • I need a combo box with 4 values to choose from which will populate a text box on the form with text related to each combo box selection

    For example:
    Combo box choices:
    apple
    tomato
    squash
    Pumpkin
    The text box depending on the selection above would state the color:
    Green        (if Apple was chosen from the combo box
    Red           (if Tomato was chosen from the combo box
    Yellow       (if Squash was chosen from the combo box
    Orange      (if Pumpkin was chosen from the combo box
    I am very new at this and have spent hours looking for an answer.  Thank to anyone in advance who can help!

    Place each value as the export value of the options in the combo-box and then use this code as the text field's custom calculation script:
    event.value = this.getField("ComboBox Name").value;

  • Hide and Show

    Hi all,
    In my application i want to hide and show a report. For this i created two buttons in a new region and setting a hidden item value depends on Hide or Show button.But i want to hide the report only not the title so that i can able to place the Hide and Show buttons in the same region.

    Hi,
    There is a "Hide and Show Region" region template that you can use that does this for you.
    However, if you wish to stay with what you have, you could enter the report title into the region that contains the buttons (assuming that this is above your report?) and use the "Region without Title" for the report region itself.
    Andy

  • Parts HTML form Expand All(Show button) option needs to customize.

    Hi,
    I am new to OAF.
    I have a requirement lin Oracle Sparse Management -> Parts HTML Request Form needs to Personalize/Customize for a business requirement.
    I have some qusetions like
    1. Can we customize or personalize the Show All Details or HideAll Details options in OA Forms ?
    2. If Yes, i have similar requirement like that,
    The personalization aim is show all details should be expanded by default.
    3. If No please provide why it can not be achevable.
    Here is business reuirement in parts Html, there are two regions in page 1. Header 2. Lines (Under Lines there are two table 1 is for Item information search and 2nd is for order details based on the item. This order details are hided under the Item information table one of the field button Show(which is like Expand All with symbol +))
    Page works like below.
    1. Header level validations are there for some fields like Resource, Need By Date.
    2. Once Valid from header can be entered the Item information search in Lines details Region, in the same table there is an option with + symbol (Show), which is like Expand All.
    will validate the item details and displays Order details respective to item. These results are hide under + Show button.
    If i want see the order details then i need to perform click action on the +Show button. (Requirement is this should be done automatically once i have entered the item in Line Details Region and needs to display the results).
    Please provide your seggestions to acheive this.
    Thanks,
    Narayana Swamy

    For this i have tried below steps to extend related VO of SHow button field.
    Below steps i have perforemed.
    1) Identified the right VO from about this page.
    ReqLineVO
    2) Exported the related standard VO to JDEV from Server.
    ReqLineVOImpl.java, ReqLineVORowImpl.java, ReqHeaderVO, RequirementAM, RequirementAMImpl.java
    3) Created a new VO which extends the standard VO and modified Showhide flag to ‘Y’
    HolxReqLineVO, HolxReqLineVOImpl.java, HolxReqLineVORowImpl.java
    4) Performed substitutions in Jdeveloper
    Project Properties -> Business Components -> substitutions
    5) Have created custom folder structure in server and moved custom VO files to server.
    \holx\oracle\apps\csp\portal\requirement\server\HolxReqLineVO.xml
    6) Performed JPX import
    1. Go to E:\jdev10g\jdevbin\oaext\bin
    2. Executed the below command
    jpximport E:\jdev10g\jdevbin\jdev\myprojects\OAProject4.jpx -username apps -password th1rdapps -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)
    (HOST=mycomapny.com)(PORT=1526))(CONNECT_DATA=(SID=TESTDB)))"
    7) After this bounced apache.
    8) While trying to open the parts html form, below exception is occurring.
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.csp.portal.requirement.server.RequirementAM'.
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1306)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:549)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:437)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:642)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:662)
    ## Detail 0 ##
    JBO-30003: The application pool (holdb01.dataintensity.comHOLDEV1524oracle.apps.csp.portal.requirement.server.RequirementAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.InvalidOperException: JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    JBO-30003: The application pool (holdb01.dataintensity.comHOLDEV1524oracle.apps.csp.portal.requirement.server.RequirementAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.InvalidOperException: JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.

  • How to display "All Items" using a "Filtered Rows" Combo Box

    Hi
    How do I make a Combo Box with "Filtered Rows" show "All Values" by default, AND have the option to select individual filters?
    If my data was
    North
    South
    East
    West
    I would want the Combo box to display
    ALL
    North
    South
    East
    West
    When the user selected:
    North, they should see just the filtered rows with North
    South, they should see just the filtered rows with South
    ALL should be the default, and it should ifilter/include North, Soutn, East and West (i.e. showing all the rows)
    I need to use a Combo box and Filtered Rows, because I actually want to filter my dataset using multiple columns:
    Company, Region, District, Sector, Value
    My current method is to:
    use a Combo to filter the RawData on Company into an Intermediate_Company worksheet
    use another Combo to filter the Intermediate_Company worksheet on Region into an Intermediate_Region worksheet
    use another Combo to filter the Intermediate_Region worksheet on District into an Intermediate_District worksheet
    use another Combo to filter the Intermediate_District worksheet on Sector into an Intermediate_Sector worksheet
    then display in a List View from the Intermediate_Sector worksheet.
    Any comments on this method would also be welcome.
    Thanks for your help
    Stuart

    Thanks Muwa
    I've uploaded a non-working version here: http://www.teradepot.com/ntxgoo6629zi/Simple_All_Combo.xlf.html
    I've figured out how to use tthe filter to copy a subset of the rows in the source date to the destination are of the worksheet.
    I can't figure out how to use a filter to copy ALL the rows in the source to the destination.
    I've seen hints about using hidden filters, but I can't make this work, either.  It's quite depressing, really
    I'm very grateful for any help you can give.
    Thanks in advance
    Stuart

  • Combo Boxes....again but straight answer required.

    Okay so the follwing code:
    oItem = oForm.Items.Add("oCombo2", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX)
                    With oItem
                        .Height = oXPlaneItem.Height
                        .Width = oYPlaneItem.Width
                        .Left = oYPlaneItem.Left
                        .Top = oXPlaneItem.Top
                        .DisplayDesc = True
                    End With
                    oCombo = oItem.Specific
                    oCombo.DataBind.SetBound(True, "", "U_Status")
                    oCombo.ValidValues.Add("1", "Live")
                    oCombo.ValidValues.Add("2", "Got")
                    oCombo.ValidValues.Add("3", "Lost")
                    oCombo.ValidValues.Add("4", "Didn't happen")
    Results in a combo box that once selected shows the description only - GREAT!
    BUT...... when selecting from the combo box the lists shows VALUE - DESCRIPTION (i.e.   1      -      Live), Can this be changed to just show the description.
    Apologies if this is answered in another post but I was looking for ages and the difference between selected and combo box selection descriptions was never dictated.
    Dave A.

    Its not possible to show only the description.
    Vasu Natari.

Maybe you are looking for

  • HP Laserjet printer connected to my Airport Express?

    I have bought a HP Laserjet printer and I want to connect it to my Airport express, so I can print wireless. I have my Airport express installed and connected to my router via Ethernet cabel and I the printer is connected to the Airport station by a

  • Looking for a lightweight C++ PDF Library

    I'm looking for a very simple PDF library to help me fill in forms in PDF documents, written in C or C++.  I've looked at a lot number of libraries for this and am surprised it is so hard to find! Here's some of the things I've already looked at: pop

  • When is the ios 5 coming out will it be in august

    When is the ios 5 coming out and will it be in August

  • Apple-ID not accepted in iTunesStore and AppStore today.

    My Apple-ID works at me.com and at appleid.apple.com, but iTunesStore an AppStore don't accept (the Password?) today. The login Window apears again and again without explaining message. ???

  • 90% Screen goes to Black

    I have problem with iBook display almost 90 Black I still able to see it and do something but very dark. Also the backlight is off. Plase help !!!