ADF FACES Select Many Shuttle Broken?

It seems that the Select Many Shuttle Component got broken somewhere between EA-12 and EA-14.
I have a Bean that returns a list of SelectItems with the label and value being strings. When I try to submit from the selectMany Shuttle, I get
"Conversion failed: SelectMany could not convert submittedValue to an int - The value "[Ljava.lang.String;@879541" in "" was not understood."
This used to work fine until I upgraded to EA-14. Any ideas on what is happening?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Yes, there is a bug, fixed in EA15. Simple workaround, though: add valuePassThru="true" to your shuttle.

Similar Messages

  • ADF select many shuttle value tracking in the bean

    Hi All,
    I am working on a one requirement,
    I have adf task flow(.jsff component), here i have ADF select many shuttle component,
    I need to track value value which i am moving from the left side of panel to the right side panel ,i need to track these values in the Bean class.
    I am not doing in the .jspx ,doing it in the .jsff bounded task flow.
    can any1 pls suggest me the approach??
    thanks
    Santosh

    Here is what I did to get the selected items in the backing bean before they are shuttled across.
    Added af:clientListener (<af:clientListener method="showDetails" type="propertyChange"/>) for af:selectManyShuttle
    Set ClientComponent for af:selectManyShuttle to true
    Added af:serverListener (<af:serverListener type="shuttleItemSelected" method="#{backingBeanScope.mainBean.itemSelected}"/>) to parent of af:selectManyShuttle which is af:panelBox in my case.
    Added af:Resource with the following code
    <af:resource type="javascript">
    function showDetails(event)
    if(AdfRichSelectManyShuttle.SELECTION == event.getPropertyName())
    var shuttleComponent = event.getSource();
    var parent = shuttleComponent.getParent();
    var selectedObjs = AdfShuttleUtils.getLeadSelection(shuttleComponent);
    AdfCustomEvent.queue(parent, "shuttleItemSelected", {fvalue:selectedObjs}, false);
    event.cancel();
    </af:resource>
    In the backing bean code, implemented serverListener with the following code. "DepartmentsView1" is the list binding used to populate the Shuttle.
    public void itemSelected(ClientEvent clientEvent) {
    ArrayList ids = (ArrayList)clientEvent.getParameters().get("fvalue");
    Object idArray[] = ids.toArray();
    BindingContainer bc = this.getBindings();
    JUCtrlListBinding listBinding = (JUCtrlListBinding)bc.get("DepartmentsView1");
    RowIterator itr = listBinding.getRowIterator();
    for (int i = 0; i < idArray.length; i++) {
    int idx = Integer.parseInt((String)idArray);
    Object str = itr.getRowAtRangeIndex(idx);
    System.out.println(str);
    When I run the JSPX file, I see the selected value printed in the message window before it is shuttled. If I select multiple values, I see them in the backing bean.

  • How to get the selected values from ADF select many shuttle to textfield

    Hi All
    Actually in my webpage, I am using text field and beside that placing the command button. When user clicks the command button, a popup window will open up with the "af:select many shuttle" component. While popup opens, it fetch the values backend and displays it to the user in left side of the component. When user selects few values to the right side of the component and clicks ok. Those selected values should be displayed in the besides inputtext field.
    Code in Webpage:
    <af:inputText id="disciplineVariable"
    contentStyle="width:200px;"
    styleClass="AFDefaultBoldFont;AFLabelTextForeground;AFDarkForeground;"
    value="#{ADFStandards.input}"/>
    <af:commandImageLink id="cb12" icon="/compliance/images/List.PNG" hoverIcon="/compliance/images/HoverList.PNG">
    <af:clientListener type="action" method="disciplinePopupMethod"/>
    </af:commandImageLink>
    PopUp code:
    <af:popup id="testingPopUP" contentDelivery="lazyUncached">
    <af:dialog title="TestingPOPUP" dialogListener="#{testBean.testingValues}">
    <af:selectManyShuttle id="sms1" valueChangeListener="#{testBean.testingPopUP}">
    <f:selectItems value="#{ADFStandards.mostCommonStandards}" id="si1"/>
    </af:selectManyShuttle>
    </af:dialog>
    </af:popup>
    Could anyone please help me in this.
    Regards
    Venkat.S

    Bind your value attribute for af:selectManyShuttle to the List property in ManagedBean. When the User finish the selection, in your MB set the attribute List in input string attribute (probably what you want is iterate over the list, and concatenate on the String). After that, you have to partialTriggers on the inputText component in order to refresh.
    Regards,

  • Embedding tree in select many shuttle

    Hi,
    Is there a way to implement a Shuttle having an tree as an select item value ?
    When I use tree in a selectmanyshuttle, it gives an error "Tree is not a valid child of a Select Many Shuttle Element". Please give me some idea how to do this.
    <af:form id="f1">
    <af:selectManyShuttle label="label 1">
    <af:tree value="#{bindings.PlanVO11.treeModel}" var="node"
    selectionListener="#{bindings.PlanVO11.treeModel.makeCurrent}"
    rowSelection="single" id="t1" binding="#{TestBean.treecode}">
    <f:facet name="nodeStamp">
    <af:outputText value="#{node}" id="ot1"/>
    </f:facet>
    </af:tree>
    </af:selectManyShuttle>
    </af:form>
    Thanks,
    Rakesh

    AFAIK this isn't possible (as the error message also states) :(
    On the other side I don't understand how it should work if it would be possible. You select one node and shuttle it over and you expect that all child nodes are shuttled over too?
    Timo

  • JDeveloperStudio 10.3 -- ADF  Faces -- Too many components causes crash

    My page has finally gotten so complex that the stack overflows and the application just aborts. I can remove a couple of components and the page works fine. It doesn't seem to matter which components I remove; when I navigate to the page the following appears in my Embedded OC4J Server log.
    Debugger connection to debuggee process has been lost.
    Process exited.
    Debugger disconnected from local process.
    The MyPagejspx.java file is over 500K and the class file is about 110K. If I remove some components and get the total MyPagejspx.java file under 500K then the page works again.
    The page includes a lot of MapViewer navigation controls and a number of tables that are used to display and edit attribute data. Most of these tables include nested tables inside of their detailStamps. Rows in a table of streets have tables of sites. This is where things start to fail.
    Sometimes (but not always) I get a message that tells me that could not find the StackOverflowError class so I have tried adding a -Xss1024k option to my Java options but this didn't help; neither did -Xss2048k.
    I am highly confident that the problem is not caused by the code itself as I can remove any panelGroup or panelForm set on the page and it works. I put any back and it fails. It is just too many components. Everything compiles fine but JDeveloper just disconnects from the application when the page is opened.
    So ... any ideas of what I might do to continue developing this page or do I have to break my application into more pages (not what the users want).
    Thanks, Mark

    This was easy enough to do without bothering with any database or tables. I created a bottom level include jspx as follows:
    Include-0.jspf
    <af:panelBox text="Bottom include file has 3 panelForms" >
      <af:panelHorizontal>
        <af:panelForm rows="1" maxColumns="1">
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
        </af:panelForm>
        <af:panelForm rows="1" maxColumns="1">
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
        </af:panelForm>
        <af:panelForm rows="1" maxColumns="1">
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
          <af:inputText label="Lorem ipsum" rows="3" wrap="true" readOnly="true"
                        value="Proin orci. Suspendisse cursus lobortis magna. Vivamus id tortor. Phasellus consectetuer, quam sit amet laoreet ultrices, tortor leo aliquet turpis, ut elementum nisi eros et nisl."    
                        />
        </af:panelForm>
      </af:panelHorizontal>
    </af:panelBox>I included this in another jspf file
    Include-1.jspf
    <af:panelBox text="Include-1.jspf includes Include-0.jspf 5 times.">
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
    </af:panelBox>I include that in another jspf
    Include-2.jspf
    <af:panelBox text="Include-2.jspf includes Include-1.jspf 5 times.">
      <jsp:directive.include file="/Include-1.jspf" />
      <jsp:directive.include file="/Include-1.jspf" />
      <jsp:directive.include file="/Include-1.jspf" />
      <jsp:directive.include file="/Include-1.jspf" />
      <jsp:directive.include file="/Include-1.jspf" />
    </af:panelBox>And that was references by my jspx page.
    TooManyComponents.jspx
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces" xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
      <jsp:text>
        <![CDATA[ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ]]>
      </jsp:text>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:script source="/jscript/view_tools.js"/>
        <af:document rendered="false">
          <af:form id="notloggedin">
            <af:panelPage title="This never happens but it mirrors my problem layour">
              <jsp:directive.include file="header.jspf"/>
              <af:commandMenuItem text="You are not logged in.  Please click this message to be re-directed to the Login Page" action="login"/>
            </af:panelPage>
          </af:form>
        </af:document>
        <af:document rendered="true">
          <af:form id="loggedin">
            <af:panelPage title="Too much of a good thing?">
              <jsp:directive.include file="/header.jspf"/>
              <jsp:directive.include file="/Include-2.jspf" />
            </af:panelPage>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>This particular setup yeilded me the following error
    Fatal error: Cannot find class java/lang/StackOverflowError
    Process exited.
    Debugger disconnected from local process.If I put a second <jsp:directive.include file="/Include-2.jspf" /> in my jspx file I get the following compile time error.
    Error: code segment of method _jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) too largeIf I remove one of the jsp:include directives from my Include-1.jspf so that it reads as follows:
    <af:panelBox text="Include-1.jspf includes Include-0.jspf 4 times.">
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
      <jsp:directive.include file="/Include-0.jspf" />
    </af:panelBox>The application works.
    I took all the JDeveloperStudio defaults for creating my project. I can send you a War file if you let me know where to send it.
    Thanks, Mark

  • ADF Code Corner 64 - Select Many Shuttle. Please help

    Hello all.
    I have developed exactly the same case as the one described in Code Corner 64.
    The only difference is the VO names and the iterators.
    The value of the Shuttle come the below piece of code:
        public Integer[] getSelectedIndxs() {
            selectedIndxs = null;
            selectedIndxList = new ArrayList<Integer>();
            //get all enterprise role for the current selected user role
            DCIteratorBinding aclDciter = ADFUtils.findIterator("ACLvo1Iterator");
            RowSetIterator rsi = aclDciter.getRowSetIterator();
            //get access to the "EnterpriseRolesVOIterator"
            DCIteratorBinding enterpriseRolesIter = ADFUtils.findIterator("EnterpriseRolesVOIterator");
            while(rsi.hasNext()){
                //Get the key of enterprise role of the ACL
                Row rw = rsi.next();
                Key key = new Key(new Object[] { (String)rw.getAttribute("EnterpriseRolesId") });
                enterpriseRolesIter.setCurrentRowWithKey(key.toStringFormat(true));
                int indx = enterpriseRolesIter.getCurrentRowIndexInRange();
                selectedIndxList.add(indx);
            selectedIndxs = selectedIndxList.toArray(new Integer[selectedIndxList.size()]);
            return selectedIndxs;
        }The value of "indx" looks fine in the debugger.
    I have also printed the whole array list at the end, and looks fine.
    The problem is that I get:
    *<SimpleSelectManyRenderer> <_getSelectedItems> Could not find value:12 of type:java.lang.Integer among list of SelectItems*
    *<SimpleSelectManyRenderer> <_getSelectedItems> Could not find value:13 of type:java.lang.Integer among list of SelectItems*
    *<SimpleSelectManyRenderer> <_getSelectedItems> Could not find value:10 of type:java.lang.Integer among list of SelectItems*
    *<SimpleSelectManyRenderer> <_getSelectedItems> Could not find value:11 of type:java.lang.Integer among list of SelectItems*
    etc...
    Should anyone has ANY idea please let me know. I'm going nuts with this...
    Thanks a lot! I really appreciate
    Edited by: apostolosk on Mar 15, 2012 12:06 PM

    Finally the mistake was the returning index. I should had returned the values - not the index.
            ArrayList<String> selectedValues = new ArrayList<String>();
            //get all enterprise role for the current selected user role              //DCIteratorBinding aclDciter = (DCIteratorBinding)bindings.get("ACLvo1Iterator"); 
            DCIteratorBinding aclDciter = ADFUtils.findIterator("ACLvo1Iterator");
            aclDciter.executeQuery();
            RowSetIterator rsi = aclDciter.getRowSetIterator();
            Row[] rw1 = rsi.getAllRowsInRange();
            for (Row rowa : rw1){
            System.out.println("display row" + rowa.getAttribute("EnterpriseRolesId"));
                selectedValues.add((String)rowa.getAttribute("EnterpriseRolesId"));
            return selectedValues.toArray(new String[selectedValues.size()]);Thanks a lot.

  • ADF Faces - Select data from a table row

    Hi! I have to build a Select One table but I'd like to use instead the combination: radio button (to select) command button (to submint), only a command button placed in each row wich make both action with a single click.
    Is it possible? How?
    Thanks!

    Maybe some variant of the below will work for you:
    SELECT *
    FROM  
            SELECT transaction_id
                 , employee_name
                 , customer_number
                 , customer_name
                 , ROW_NUMBER() OVER (PARTITION BY employee_name ORDER BY DBMS_RANDOM.RANDOM) AS rn
            FROM   tbl_transactions
    WHERE rn <= 10
    ;

  • How to not display radio buttons in the select many shuttle component

    Hi all,
    af:selectManyShuttle is a true nice component.
    For business / UI ergo reasons I've decided to not display the radio buttons before each item. There's no option to do that.
    Is it possible ? How ?
    Regards
    Luc-

    Let say there are three ways:
    1. You can use skinning mechanism,
    2. You can include css file in .jspx page and then use it.
    3. You can write css directly in .jspx page.
    For skinning read documentation. For two other ways here is example code that should be inside metaContainer facet of document tag.
    <f:verbatim>
      <!-- CSS directly in jspx page -->
      <style type="text/css">
        .myClass{
          background-color: #8888FF;
      </style>
      <!-- Include css file in jspx page -->
      <link href="css/incStyle.css" rel="stylesheet" type="text/css" />
    </f:verbatim>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Controlling SelectManyCheckbox layout in ADF Faces

    Hi,
    The only possibilities for the layout for an ADF faces select many checkbox seem to be "horizontal" or "vertical". How can we control the layout to say - have 10 checkboxes laid out horizontally in two groups of 5 vertically laid out checkboxes ?
    If there is no such attribute to control the layout better, does anyone have any recommendations on how this can be accomplished in any alternative way?
    Thank you

    Hi,
    no, but what about using a scrollbar?
    <af:form inlineStyle="width:400px; height:200px; overflow:auto;">
              <af:selectManyCheckbox label="Departments" layout="vertical">
                <af:forEach items="#{bindings.DepartmentsView1.rangeSet}" var="li">
                  <af:selectItem label="#{li.DepartmentName}"
                                 value="#{li.DepartmentId}"/>
                </af:forEach>
              </af:selectManyCheckbox>
            </af:form>Frank

  • ADF Faces : Oracle Chooses Flex

    hi
    On the home page on http://flex.org/ it says "Check out how large companies like ... Oracle ... and others use Flex ...".
    Which lead me to find ...
    - "Oracle Chooses Flex (part 1)"
    http://www.jamesward.org/wordpress/2007/11/12/oracle-chooses-flex-part-1/
    - "Oracle Chooses Flex (part 2 - BI Publisher)"
    - "Oracle Chooses Flex (part 3 - Enterprise Manager)"
    - "Oracle Chooses Flex (part 4 - Siebel CRM)"
    - "Oracle Chooses Flex (part 5 - Sales Prospector)"
    - "Oracle Chooses Flex (part 6 - Sales Library)"
    - "Oracle Chooses Flex (part 7 - Sales Campaign)"
    Also, Frank Nimphius has commented on Flex before, "Re: JDev 11 - should we start to learn Flex and ActionScript ?".
    Could someone from Oracle please remind us how all this fits in with the direction JDeveloper 11g is taking with ADF and ADF Faces?
    many thanks
    Jan Vervecken

    The standard UI technology for the Fusion apps user interface is the ADF Faces Rich Client components. This hasn't change and is the way most of the teams are developing their new applications.
    In an organization with 70,000 people it is a bit hard to make sure that all the project follow the guidelines. Unfortunately out of the about 150 projects we are building, there were a couple of projects that diverted from the standard recommended technology stack. Some of these projects are planning a migration to ADF Faces.
    Oracle continue to believe that ADF Faces RC combined with the ADF framework back-end provides the most powerful development experience.
    As far as adopting Flash - you can actually see that some of our components in 11 use Flash as a one of the possible rendering technologies - check out the graphs provided by ADF data visualization components for example.

  • How to select rows in adf faces table

    Hi guys
    im new to adf faces .I created a adf faces table with some data.My task is to select one row and if i click tht row, the data of tht row will be displayed in an input text fileds.How can i select a row in a adf faces table and give actions to rows...i read so many tutorials...none of them didnt give a correct idea....plz help me...
    thanks in advance..
    rajiv

    You're here in the Sun JSF forum, not in the Oracle JSF forum.
    Try here: JDeveloper and ADF
    If the ADF datatable is technically comparable with the RI datatable, check http://balusc.xs4all.nl/srv/dev-jep-dat.html to get some insights how to retrieve the selected row object.

  • ADF Faces table selection from commandLink?

    I'm using the ADF faces table component and would like to allow my users to make a selection out of the table from a click onto a commandLink rather than using the tableSelection facets. How can I determine the row they have clicked on?
    Thanks for any help,
    Jeff Cooper

    Hello
    Sorry to restart this thread again, but if i do table.getRowData() i don't get any rows, the rowcount remains 0, but my table contains many data rows.
    Is there anybody who knows what the reason can be?
    thx

  • How to use Multiple selection in ADF faces

    i i would like to know how to use an multiple selection (ADF select many choice) to update the database.

    Hi,
    Timo is correct that there is no automated way for doing this. You can access the select many selection from a managed bean either accessing the ADF binding layer or by referencing a managed bean array property. So the use case is important. Use case would include the database attribute type to update
    Frank

  • Not able to get ADF select many checkbox working with binding lists

    Hi,
    I have 2binding lists: list A that holds the selected choices and list B for all the choices. When the user opens the page, a list of checkbox should be displayed all the choices from list B with the saved ones pre-checked from list A. When the user changes the selection, the binding list A should be updated.
    I tried to use ADF select many checkbox but could not get it working for this.
    There are 2 big issues:
    1, can get all the choices from binding list B displayed but not able to pre-check the ones from list A.
    2, when the selection changed, not able to updated list A with the new choices
    I find some sample but it is talking about saving the selected choices into the managed bean not into binding object and using valueChangeListener. How to implement this in ADF? Please help.
    Thanks,
    Helen

    Helen,
    I don't think you can do this with a select many checkbox. This component works on one list whereas you want to handle two. You may archive this if you use a managed bean and handle all the list manipulation in java.
    Your use case more looks like a select many shuffle (http://docs.oracle.com/cd/E18196_01/11.1.2.0.0/lovs.html).
    Timo

  • ADF Faces - filtering a selectOneChoice after select from another

    Hi,
    I'm new to ADF faces and I've been experimenting with developing applications using Jdeveloper 10.1.3 and ADF faces. I've run into a little problem.
    I have two selectOnceChoice fields on a page (division and dept.) When user selects a Division I would like to filter the dept. But it seems that the value I get when I try to filter when the div changes is the array index not the value of the division. Basically what I've done is set the valueChangeListener to a function on the backing bean for the Div selectOneChoice and set auto submit to true. If I look at the values on the valueChangeEvent they are the indexes not the actual values. I've tried using ExecuteWithParms in the page def and binding to to #{bindings.div.inputValue} but the results are the same the inputValue at this point contains the array pointer not the actual value. as seem by turning on -Djbo.debugoutput=console.
    Does anybody have any suggestions?
    Thanks
    Chris

    Scott - check out Re: How to do? Save-and-Return with ADF Faces and ADF BC, JDev 10.1.3
    John

Maybe you are looking for

  • Solaris 11.1 x86, lots of "snapshot already exists" in backup pool

    Experts, This is strange. I have been using time-slider and a synchronization script every 15 minutes since the OpenSolaris days. The recent update to 11.1 has caused the backup pool randomly to refuse to delete phantom snapshots during a weekly trim

  • How to transport changes made in SE36 -  Dynamic Seletion for BRF

    Hi Friends, Please guide me how to transport or assign a request for the changes made in BRF selecion view. I have assigned and added BKPF-XREF1_HD field for FB03 transaction. Its working fine as per user requirement. I am facing probelm to assing a

  • Convert EBS RDF to XMLP - anyone had any success with the converter

    I have converted the ARXCAR rdf to XML Publisher which was surprising simple. However getting it to work seems to be a different matter. The PL/SQL contained multiple bugs which were easily fixed. The dataTemplate contains lexicals for KFF's which do

  • How to make a select list to return value to numeric column?

    I do have a select list with static values (STATIC:01;0,02;1,03;2,04;3,05;4,06;5,07;6,08;7,09;8,10;9). The problem is that I am returning a value to a numeric column. Therefore I have set 'Post Calculation Computation' as "to_number(:P73_MRGRATING, 9

  • Sound not working on my Mac pro

    the sound is not working in my Mac pro. The sound icon on the top right hand corner is a pale gray. I went to systeme preferences/sound and I could not see anything particular. Thanks for your help