Select Order Shuttle Not Displaying Values

JDev 11.1.2.3.0 ADF BC
I have this following code
<af:selectOrderShuttle value="#{bindings.EmployeesView1.inputValue}"
                              label="#{bindings.EmployeesView1.label}"
                              id="sms1">
          <af:selectItem value="#{bindings.EmployeesView1.items}" id="si1"/>
        </af:selectOrderShuttle>When I run, the shuttle does not display any values. If I change the component to <af:selectManyShuttle> it works and displays values.
As I want to order the shuttle items, I need to use selectOrderShuttle component.

Hi,
this works for me
                        <af:selectOrderShuttle label="#{bindings.EmployeesView1.label}" id="sms1">
                            <f:selectItems value="#{bindings.EmployeesView1.items}" id="si1"/>
                        </af:selectOrderShuttle>Frank

Similar Messages

  • Is it possible to easily view the actual (not displayed) value of a cell?

    Is it possible to easily view the actual value of a cell calculated by a formula, not the displayed value after it has been rounded off?
    For instance, if you enter the number 1.23456789 and display it rounded to 3 decimal places, you can still see the full, actual value in the formula bar:
    The problem arises when you reference that number in a formula: you can't see the underlying value (even though it's obviously known to Numbers):
    Is there a way to get the formula bar (or a tooltip) to show the full, unrounded value? Changing the display to more decimal places is not very convenient, especially on big spreadsheets. Maybe it could be done via AppleScript?
    A related issue arises when you try to look at the sum or average of a number: if the numbers being summed have the same number of rounded decimals, the sum displayed is rounded too. I find this very annoying: I want to see the actual value, not how my spreadsheet may be displaying it in that cell.
    Although, curiously, rounding to any number of decimals as long as they are not all the same displays the full, correct underlying values:
    Has anyone come up with workarounds for these issues?

    I did it with an AppleScript.
    Now any time I have a cell or cell range selected, I do one click (AppleScript menu > Display Value at Full Precision), and it shows me a popup alert that simply reads:
         rowname : columnname
         value
    Here's the script:
    tell application "Numbers"
              try
                        set selectedTables to (tables of sheets of front document whose selection range is not missing value)
                        repeat with selectedTable in selectedTables -- tables of each sheet
                                  if contents of selectedTable is not {} then -- the list is not empty, it's the selected sheet
                                            set selectedCells to cells of selection range of (get item 1 of selectedTable)
                                            repeat with i in selectedCells -- each selected cell
                                                      set {selectedRow, selectedColumn, selectedVal} to {row, column, value} of i
      --                                                  display alert "value of " & name of selectedRow & " : " & name of selectedColumn & " (" & address of selectedRow & ":" & address of selectedColumn & ")" message selectedVal
      display alert name of selectedRow & " : " & name of selectedColumn message selectedVal
                                            end repeat
                                            return
                                  end if
                        end repeat
              on error eMsg number eNum
      display alert eMsg
              end try
    end tell
    ( Props to Jacques Rioux who posted code to get me started at https://discussions.apple.com/thread/3964938 )

  • Firefox 33 HTML select elements do not display correctly

    HTML form <select> elements do not display options correctly in Firefox 33.
    For example:
    <select id="field_4" class="mainForm" name="field_4">
    <option value=""></option>
    <option value="submitted"></option>
    <option value="pending"></option>
    <option value="discarded"></option>
    <option value="all"></option>
    </select>
    should display a drop down with 5 elements (first one blank) but no elements at all are displayed.
    The bounding box does not seem to be computed correctly so no options display.
    I have observed this issue on multiple pages. These pages displayed correctly in older version of Firefox and they display correctly under IE. The problem occurs with no addons or additional themes installed. The problem does not occur in SafeMode so I suspect that it is theme related but the Default 33.0 theme is the only installed theme and it cannot be disabled outside of SafeMode. I tried installing and changing multiple themes without success. The problem persists after restarting Firefox and after rebooting the computer and even after uninstalling and re-installing Firefox.
    I can supply a screen shot if needed.

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    If it works in Safe Mode and in normal mode with all extensions (Firefox/Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: Firefox > Quit Firefox; Linux: Firefox/File > Quit)
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • KOMK Fields not displaying values in sales order.

    Hi all,
    I have created an additional tab for VA01,02 and 03. I have added fields from VBAP table and KOMK structure.
    Now fields added from KOMK structure are displaying empty fields(no value). The fields areVAT REG NO (KOMK-stceg) and Tax Code (KONP-MWSK1).
    i have added fields with same name, so i have not coded anything. Do i need to code something for these fields?
    Please suggest the possible solution.
    Thanks in advance for your suggestions.
    Regards,
    NarsiReddy cheruku.

    Hi Edgar Soares,
    Thanks for your reply,
    Yes you are right, i am using BADI_SLS_ITEM_SCR_CUS.
    now i have added KNA1-STCEG to screen and in PBO module i coded as follows.
    (In top include i declared Tables kna1 and Tables VBAK.)
    data vat type kna1-stceg.
    data wa type kna1.
    SELECT SINGLE * from kna1 INTO wa.
    vat = wa-stceg.
    But it is not displaying Vat reg num on screen only displaying empty field.
    Please suggest where i went wrong.
    Thanks & Regards,
    NarsiReddy Cheruku.

  • Multi-Select Box Not Displaying Values Passed From Grid?

    Coldfusion 8
    I inherited an application and am trying to maintain and improve it... hit a snag today.
    I have a multi-select box that is not displaying what I expect.  The values come from a ColdFusion grid which is based off a database query.
    Here is the code for the select - does not work - nothing is selected:
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.
    <cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Or if I assign a variable like this and use the multi-select code it seems to work as well.
    testlist = "22,26";
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="#testlist#" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    I have displayed the value of "User_IDs" in the grid and in the data entry part of the screen to see values of:  22,26
    to make sure that wasn't my issue.
    Do grids and multiselects require something additional?  Any advice on how to resolve?

    Problem was related to some javascript for the select box.  There was a function for a single select box but not a multiple select box - this fixed it: 
    if(theForm.elements[i].type == "select-multiple"){
                        var selectBox = theForm.elements[i];
                        var sbname = selectBox.name;
                        cpvalue = String(eval('record.data.' + sbname));
                        var NotifyArray = cpvalue.split(',');
                        for (var j=0; j < selectBox.length; j++) {
                            selectBox[j].selected = false;
                        for (var j=0; j < selectBox.length; j++) {
                            sbvalue = selectBox[j].value;
                            for (var k=0; k < NotifyArray.length; k++){
                                if (sbvalue == NotifyArray[k]){
                                    selectBox[j].selected = true;

  • KE30 Report not displaying value in element line  , why ?

    Dear COPA Experts ,
    IN KE30 ,there is a line element displaying for main prodcut (Value field used is Qty ) ,in the Same way i have created new element line for displaying by-prodcut qty (value field used is Qty ) ,after report generated and executed ,but it does not displaying the qty value of by -prodcut . but when drilling down to line item ,this KE30 is displaying line items of by-Prodcut .
    the cost elements groups used for both are different and when run KE24 i was able to see by-Prodcut qty .
    Can any one suggest ,wehther i have missed any setting ?
    Thanks
    Partha

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • BUG :  FORMS not displaying values stored in FLOAT datatypes.

    APEX 2.2.1.
    Error occurs on both V9.2.0.4 and V10.2.
    I'm working on a "report with form" combination and have been fighting a problem where the data entered into a form will save correctly and show in the report, but when you choose to edit the record to update it, the value will not display in the form at all.
    I went round and round, and finally discovered that the problem had to do with the FLOAT datatype being used to store the data.
    When creating a default "Report with Edit form" on the following two example tables, the form works correctly with SLA_SCHEDULE2 but not with SLA_SCHEDULE1
    CREATE TABLE SLA_SCHEDULE1
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE FLOAT(126),
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    CREATE TABLE SLA_SCHEDULE2
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE NUMBER,
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    The only workaround I have so far is to change the datatype of the column.
    Doug

    Based on the advice Scott gave above, I've created this function...
    CREATE OR REPLACE FUNCTION Get_Float_Value
    p_table_name           VARCHAR2,
         p_float_column_name     VARCHAR2,
         p_key_id_name          VARCHAR2,
         p_key_id_value           VARCHAR2
    RETURN FLOAT IS
    TYPE FLOAT_CURSOR IS REF CURSOR;
    f_cur FLOAT_CURSOR;
    FLOAT_VALUE FLOAT(126);
    SQL_STMT VARCHAR2(500);
    BEGIN
         SQL_STMT := 'select :a from :b where :c = :d';
         SQL_STMT := REPLACE(SQL_STMT, ':a', p_float_column_name);
         SQL_STMT := REPLACE(SQL_STMT, ':b', p_table_name);
         SQL_STMT := REPLACE(SQL_STMT, ':c', p_key_id_name);
         SQL_STMT := REPLACE(SQL_STMT, ':d', p_key_id_value);
    OPEN f_cur FOR SQL_STMT;
         LOOP
         FETCH f_cur INTO FLOAT_VALUE;
         EXIT WHEN f_CUR%NOTFOUND;
         RETURN FLOAT_VALUE;
         END LOOP;
         RETURN NULL;
    END Get_Float_Value;
    This allows you to call the function ANYWHERE you use a FLOAT, without having to create one function per table/column you might need to use it against.
    I know that I could have used a 'USING' statement on the cursor to do the replacements, but I always find it easier to debug replacement values using the REPLACE function.
    Doug

  • List Managers Displays Return Value and Not Display Value

    Hi
    I have created a List Manager (based on a Popup LOV). My lov is as follows:
    SELECT pt.paper_code d, pt.paper_icode r
    FROM uo_sturec.paper_table pt
    WHERE pt.start_year <= 2006
    AND (pt.finish_year >= 2006 OR pt.finish_year = 0)
    AND pt.paper_type = 60
    ORDER BY pt.paper_code
    However, when I select something from the popup, it displays the pt.paper_icode in the field and when I click on Add, the pt.paper_icode is added to the selction box.
    What can I do to make the display value, pt.paper_code appear both in the field and the selection box?
    Kind regards
    Jo

    Hi Scott
    Thank you for your reply. However, I want the return value to be pt.paper_icode, because I'll be using this value to populate another item on the same page. Is there some javascript I could write to just change the display value of the List Manager while preserving its return value?
    Thanks.
    Jo

  • Reg: Drop-Down list Box not  displaying values

    Hi Experts,
                     i am publishing a module pool program in the internet using SICF Transaction . In the internet my drop down list box is not displaying the default value  but in my sap it works fine .
    What may be the problem?
    Regards,
    Vikram

    Hello Thorsten Domsalla ,
                      My Problem is in my sap module pool program there is a drop down list box which disaplays  default values its working fine in sap gui but when i access through internet (SICF) Transaction the Drop down list box not listing out default values .
    i am using Integrated ITS Version 7.0 and Support package 08.
    Regards,
    Vikram

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • Selection screen is not displaying if I use logical database CCLDB_AENR

    Hi Experts,
    If I use the logical database CCLDB_AENR in my custom program, it is not displaying my custom program selection screen. It is only displaying the logical database selection screen.
    some one help me how we can handle this.
    Thanks,
    Naresh.

    Hi Experts,
    If I use the logical database CCLDB_AENR in my custom program, it is not displaying my custom program selection screen. It is only displaying the logical database selection screen.
    some one help me how we can handle this.
    Thanks,
    Naresh.

  • Purchase order history not displayed in correct sequence

    Hi all,
    We are on SRM 7.1 ECS.
    The issue we are facing is that the follow on documents for the PO i.e.
    confirmatin and Invoice are not displayed in the correct sequence i.e. the sequence in which the documents are displayed is :
    Invoice>confirmation>shopping cart-->PO
    Any idea if this is a std feature or a bug?

    Hi
    Pl find the content of the notes.
    Note 1524928 - History: Order of related document is not consistent.
    Symptom
    In some cases, when you go to the shopping cart item history, the system displays follow-on documents in a wrong order.
    Other terms
    History.
    Reason and Prerequisites
    Program Error.
    Solution
    Implement the attached correction instructions or apply the relevant Support Package.
    If  the note is not released , pl raise a OSS to get this note released.
    Regards
    velu

  • "View Selected Item" does not display

    I'm using RoboHelp7 out of the Technical Communication Suite.
    When I'm working on a topic and select the
    View Selected Item button, the topic does not display. When
    I first tried yesterday, nothing happened (IE didn't open and there
    was nothing in my tray). I contacted Oversea's support and was
    informed that there wasn't an incident for this occurance. I was
    instructed to uninstall and reinstall RoboHelp.
    I uninstalled and reinstalled the applications and the button
    still doesn't work; however, this time there is an hourglass for an
    instant before not producing any results.
    The button doesn't work with anything that I've created or
    with the example projects (Clownfish School). Any help would be
    greatly appreciated. I'd hate to have to regenerate the project
    just to look at a quick change.
    Thanks,
    Matt

    Sounds like I need to add a note to that Snippet. Thanks.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Why doesn't a Popup Key LOV (named LOV) in a tabular form not display values in the popup?

    I have a tabular form and I'm setting one of the fields to a Popup Key LOV (named LOV). The named LOV is a static LOV. When the popup is displayed there are no values displayed. The same thing happens if I use a Popup LOV (named LOV).
    I created a sample application http://apex.oracle.com/pls/apex/f?p=15762:1that shows what happens. When the job field popup is selected, no items are displayed. If I change the item to a Select List (named LOV) it works fine.
    Is this a bug?

    Hi
    I am also getting the same issue. Hope it could be a bug.
    Can anyone plz confirm this?
    Thanks
    Lakshmi

  • Additinal tab B in sales Order header not displayed after EHP5 upgrade

    Hello Everyone,
                              I am facing an issue that the 'Additional data B' in the sales order header is not getting displayed after we ugraded to EHP5.
          We found the issue , that the screen '8309' provided by SAP for the additional data in SO header is not getting called.The call is made from screen '4312' but the call subscreen screen statement fails.
    This might be because these screens were modified (both '4312' and '8309' )using the Access key to accomodate more fields in the screen then originally provided. And SAP does not support for this modification as given in the SAPnote  170183.
    Now the question is how can I restore the existing functionality?
    PROCESS BEFORE OUTPUT.
    Verarbeitung vor der Ausgabe
    Kopfdaten vorbereiten
      MODULE VBAK_BEARBEITEN_VOR.
    PBO-Aufruf des Kunden-Subscreens "Kopf-Zusatzdaten B"
      CALL SUBSCREEN 8309 INCLUDING 'SAPMV45A' '8309'.
    PROCESS AFTER INPUT.
    Verarbeitung nach der Eingabe
    PAI-Aufruf des Kunden-Subscreens "Kopf-Zusatzdaten B"
      CALL SUBSCREEN 8309.                                                             <----This statement fails
    Alle Felder in der Bearbeiten-Kette
      MODULE VBAK_BEARBEITEN.
    Please advice.
    Regards
    Abhishek

    Hi
    Do you see SAP Note 302497 - Additional cust. fields not displayed in 'Additional data B'?
    Regards
    Eduardo

Maybe you are looking for

  • How to Auto Save in iteractive forms

    Hi All, I am working on an interactive forms development in SAP. The requirement is to have a auto save functionality as in MS office documents. Also can we have book marks for the documents. Your help is much appreciated. Regards, Sai

  • Passing (byref) String from Java to C++ via JNI

    I wish to pass a string to a C++ Dll as a parameter in a function. The problem is that I don't know howto receive back the data after it is filled in the C++ dll. I am trying to do what is called passing parameters by reference. Java Code: public cla

  • 3 Monitor Display

    I'm very sorry if this question has been asked before but i am after very spesific information... I have just gone out and purchaced 3 monitors and can only ever get 2 to display... i have: - Radeon HD7850 oc Edition 2gb - Gigabyte GA z77x ud3h - i7

  • R/3-XI-File - ErrorHandling Approach

    hi XI experts, my scenario is R/3XIFILE.  what should be the error handling approach for this and how to achieve it.  say for example, i am using abap proxy betwee R/3 and XI.  if the r/3 system fails, how do i handle the exception. at the same time

  • Application 11i Installation Problems

    I just bought the trial version application 11i CD pack. When I tried to install it to my computer with NT4.0 service pack 6, it did system check. I used stage area rapid install. The installer find 2 errors. First error is 'System Utilities Check Ch