TreeTable selectedRowKeys not working in Jdev 11.1.1.4

Hi,
We have a treetable which we create using bindings (underlying objects are POJOs and not BC)
We used to add a row to the treetable and then select the first node. This code used to work "as is in Jdev 11.1.1.3"
Now when we test the same code using Jdev 11.1.1.4; on adding a row to the treetable; all the contents of the tree table disappear.
The code below contains
a)The iterator - myTagVOsIterator which is used to build the treetable
b) Call to a method dialogOkClick() in some other file which is responsible for adding an object into the myTagVOs List
c) Setting the selectedRowKeys such that it points to the first row (causes a problem in 11.1.1.4)
d) Expand all the Top Most Nodes using disclosedRowKeys (this works fine in both 11.1.1.3 and 11.1.1.4)
e) Refresh the tree table
Code is as follows:
public void addRowToTableListener(ActionEvent actionEvent) {
BindingContext bindingContext = BindingContext.getCurrent();
BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
DCBindingContainer dcBindingContainer =
(DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
DCIteratorBinding dcIteratorBinding = dcBindingContainer.findIteratorBinding("myTagVOsIterator");
RowSetIterator rowSetIterator = dcIteratorBinding.getRowSetIterator();
OperationBinding addOper = (OperationBinding)bindings.get("dialogOkClick");
addOper.execute(); //Responsible for adding another object to the myTagVOs list
if (dcIteratorBinding != null) {
dcIteratorBinding.executeQuery(); //Refresh the iterator
int currentRow = 0; //Point to first row in tree table
dcIteratorBinding.setCurrentRowIndexInRange(currentRow);
Row currRow = dcIteratorBinding.getRowAtRangeIndex(currentRow);
rowSetIterator.setCurrentRow(currRow);
Key key = rowSetIterator.getCurrentRow().getKey();
dcIteratorBinding.setCurrentRowWithKey(key.toStringFormat(true));
DCDataRow row = (DCDataRow)rowSetIterator.getCurrentRow();
Key rowKey = row.getKey();
List<Key> list = new ArrayList<Key>();
list.add(rowKey);
RowKeySet selectedRowKeys = new RowKeySetImpl();
selectedRowKeys.add(list);
timePeriodTree.setSelectedRowKeys(selectedRowKeys);
//for expanding first level
CollectionModel model = (CollectionModel)((RichTreeTable)timePeriodTree).getValue();
JUCtrlHierBinding treeBinding = (JUCtrlHierBinding)model.getWrappedData();
JUCtrlHierNodeBinding rootNode = treeBinding.getRootNodeBinding();
RowKeySet rks = (((RichTreeTable)timePeriodTree).getDisclosedRowKeys());
if (rks == null) {
rks = new RowKeySetImpl();
List<JUCtrlHierNodeBinding> firstLevelChildren = rootNode.getChildren();
for (JUCtrlHierNodeBinding node : firstLevelChildren) {
ArrayList l = new ArrayList();
l.add(node.getRowKey());
rks.add(l);
((RichTreeTable)timePeriodTree).setDisclosedRowKeys(rks);
//end of for expanding first level
AdfFacesContext ctx = AdfFacesContext.getCurrentInstance();
ctx.addPartialTarget(timePeriodTree);
Pls advise.
Thanks
Santosh

Hi,
below code works for me in a test case of mine. Note the difference to your code (mostly in that it avoids redundant code and in particular how it sets the selected rowkey)
    public String onEmployeeCreation() {
        BindingContext bindingContext = BindingContext.getCurrent();
        BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
        DCBindingContainer dcBindingContainer =
        (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
        DCIteratorBinding dcIteratorBinding = dcBindingContainer.findIteratorBinding("allDepartmentsIterator");
        SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yy");
        Employees newEmp = null;
        try {
          newEmp =  new Employees(new Long(211), "Jennifer2", "Whalen2", "JWHALEN2","515.123.4444",
                     sdf.parse("17-SEP-87"), "AD_ASST", new Long(4400), new Long(101),
                     new Long(10));
        } catch (ParseException e) {
            e.printStackTrace();
        OperationBinding addOper = (OperationBinding)bindings.get("createNewEmployee");
        addOper.getParamsMap().put("employee", newEmp);
        addOper.execute(); //Responsible for adding another object to the myTagVOs list
        dcIteratorBinding.executeQuery();
        dcIteratorBinding.setCurrentRowIndexInRange(0);
        rks = new RowKeySetImpl();
        ArrayList rowKey = new ArrayList();
        Object pk = dcIteratorBinding.getCurrentRow().getKey();
        rowKey.add(pk);
        rks.add(rowKey);
        treeTable.setSelectedRowKeys(rks);
        //treeTable.setDisclosedRowKeys(rks);
        AdfFacesContext adfFacesContext = AdfFacesContext.getCurrentInstance();
        adfFacesContext.addPartialTarget(treeTable.getParent());
        return null;
    }Note that I made sure that on the generated metadata in the DataControl, the primary key attribute is marked as primary key (select the collection in the DC palette, choose Edit Definition from the context menu and select the PK attribute. In the PropertyInspector, set the primary key property to true)
Frank

Similar Messages

  • Af:inputRangeSlider is not working in JDEV 11.1.1.6.0

    Hi,
    af:inputRangeSlider is not working in JDEV 11.1.1.6.0
    tried dragging and droping it on to a test jspx page.
    page stays in loading mode forever and sometimes page loads,but i am not able to change values of af:inputRangeSlider.
    This seems to be a bug
    on doing inspect element in the browser, i am getting following error
    Uncaught ReferenceError: TrRangeValidator is not defined
    please help me on this
    Regards,
    Shakir

    Hi, just to clear things out, this issue occur in JSFF only, but in jspx, hot code is fine...
    Here is my sample code where the issue occurs.
    HelloWorldTaskFlow.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="HelloWorldTaskFlow">
        <default-activity id="__1">viewHelloWorld</default-activity>
        <view id="viewHelloWorld">
          <page>/viewHelloWorld.jsff</page>
        </view>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>
    viewHelloWorld.jsff
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
      <af:panelBorderLayout id="pbl1">
        <f:facet name="start"/>
        <f:facet name="bottom"/>
        <f:facet name="end"/>
        <f:facet name="top"/>
        <af:panelBox text="PanelBox1" id="pb1">
          <f:facet name="toolbar"/>
          <af:outputText value="Hello World Nakurato!" id="ot1"
                         inlineStyle="font-size:x-large;"/>
        </af:panelBox>
      </af:panelBorderLayout>
    </jsp:root>
    TestPage.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:region value="#{bindings.HelloWorldTaskFlow1.regionModel}" id="r1"/>
            <af:inputText value="Hello"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>Any change in the jsff file does not take effect immediately when refresh. but in jspx, it works.
    Any thoughts???

  • Steve Muenchs file upload sample (No. 69) does not work with JDev 10.1.3.1

    Hi,
    I installed and started Steves sample about uploading and storing OrdImage types (http://otn.oracle.com/products/jdev/tips/muench/jsfordimage/JSFOrdImageExample.zip).
    When I try to upload a file I get an exception:
    java.io.EOFException: Per-request disk space limits exceeded.
         at oracle.adfinternal.view.faces.webapp.UploadedFileImpl.loadFile(UploadedFileImpl.java:187)
         at oracle.adfinternal.view.faces.webapp.UploadedFileProcessorImpl.processFile(UploadedFileProcessorImpl.java:96)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doUploadFile(AdfFacesFilterImpl.java:247)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:163)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:106)I have found other postings concerning uploading a file with JDev10.1.3.1 (af:inputFile bug JDev10131 production ignores Per-request disk space limit
    Is it a bug with JDev 10.1.3.1? Any workaround available?
    I'm using JDev 10.1.3.1 on WinXP.
    Thanks,
    Markus

    I managed to correct this problem.
    The situation is the following:
    A CRUD page (Example: userList.jsp and userForm.jsp).
    The first page there is a af:table with tableSelectOne and a Edit button. (theres also other components, like af:menuBar and af:form, html, body and head)
    On submit, the backing bean(requestScope) gets the selected object (table.getSelectedRowData()), copy the values to the form fields and send (redirect=false) to the form page.
    When i try to update, the fileupload does not work and ignores the valueChangeListener. All the other fields are updated correctly.
    The form page is used to do Inserts and the upload works correctly.
    The problem is, when you redirect (redirect=false) from userList.jsp (usesFileUpload="false")
    to the other page, that uses the upload, the form page does not get the enctype="multipart/form-data"
    To solve it, put usesUpload="true" in both page , and you will get enctype="multipart/form-data", and upload to work.
    Changing components, the af:menuBar has a similar problem.
    I got a menubar with 2 goMenuItem.
    On each page the corresponding goMenuItem has selected="true".
    On redirect, from list page to form page, the selected goMenuItem is the one on the ListaPage, and not the form page! It only changes if I click on the tab I want!

  • Navigation buttons are not working in Jdev 11.1.2.2

    Hi All,
    I am new to ADF and I am trying to create navigation buttons but it is not working.
    I created the taskflow and the pages and I set the actions to the buttons but it only refresh the page
    Best Regards

    Sorry for disturbance it is working now :)

  • Flash player file working in HTML but same HTML code is not working in JDEV

    Hello,
    I have a flash player file which is working just fine in a plain HTML. But not working at all in Jdeveloper's .jspx file. I have no idea what is the issue. Please help.
    Below is the code snippet. There is no way I can format the code snippet for more visual clarity in this editor. So I have to live with all minified code when it displays on the posting. Sorry :(.
    Thanks, Ruchir
    <html version="-//W3C//DTD HTML 4.01 Transitional//EN">
    <link href="css/jdeveloper.css" rel="stylesheet" media="screen"/>
    <link href="css/oracle.css" rel="stylesheet" media="screen"/>
    <body bgcolor="Black">
    <br> </br>
    <table align="left">
    <tr>
    <td>
    <object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0" ID="IncrediFlash" Width="560" Height="270">
    <param name="movie" value="cxs.swf?317338960"/>
    <param name="bgcolor" value="#000000"/>
    <!--<embed name="IncrediFlash" src="cxs.swf?317338960" bgcolor="#000000" width="560" height="270" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">-->
    </object>
    </td>
    </tr>
    </table>
    </body>
    </html>

    Don't have an answer for you, but you can put tags around your code so it's more readable... just use left-bracket code right-bracket and left-bracket code slash right-bracket around your code like this:
    <html version="-//W3C//DTD HTML 4.01 Transitional//EN"> 
    <link href="css/jdeveloper.css" rel="stylesheet" media="screen"/> 
    <link href="css/oracle.css" rel="stylesheet" media="screen"/> 
    <body bgcolor="Black">
    <table align="left"> <tr> <td>
    <object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0"
    ID="IncrediFlash"
    Width="560" Height="270">
    <param name="movie" value="cxs.swf?317338960"/>
    <param name="bgcolor" value="#000000"/>
    <!--<embed name="IncrediFlash"
    src="cxs.swf?317338960"
    bgcolor="#000000"
    width="560" height="270" type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer">-->
    </object> </td> </tr>
    </table>
    </body>
    </html>John

  • Format Cross tab not working in JDev 10.1.2.2.0.1929 - BIBeans:10122

    We recently upgraded JDev from 10121_1913 to 10.1.2.2.0.1929
    and Bi beans from: 10121 to 10122
    All the features are working fine, however I'm not able to use the "Format Crosstab" button on my Crosstab Presentations.( It works on the Graph presentations)
    When I click the format Crosstab button, nothing comes-up, but I get a null pointer exception in the Dos window.
    Mon Feb 19 16:09:38 CST 2007 In DefaultBuilderDialog::runDialog null
    java.lang.NullPointerException
    at oracle.dss.addins.editor.presentation.GridViewOptionsTool$1.getPreferredSize(GridViewOptionsTool.java:53)
    at java.awt.Window.pack(Window.java:438)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.dss.datautil.gui.DefaultBuilderDialog.runDialog(DefaultBuilder Dialog.java:524)
    at oracle.dss.addins.common.wizard.AbstractBuilderDialog.runDialog(AbstractBuilderDialog.java:275)
    at oracle.dss.datautil.gui.DefaultBuilderDialog.run(DefaultBuilderDialog.java:495)
    at oracle.dss.addins.editor.presentation.GridViewOptionsTool.runTool(GridViewOptionsTool.java:76)
    at oracle.dss.addins.editor.presentation.PresentationToolbarButton.actionPerformed(PresentationToolbarButton.java:69)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
    31)

    Opened SR with oracle. This has been identified as a bug - 5910576
    However if anyone needs a quick fix, you may want to contact oracle & get the 2 class files & update your biaddins.jar

  • Drag and drop data object  not working in jdev 11.1.1.7

    I am trying to do quote process lab and faced this issue.
    When defining the user task parameter in jdev 11.1.1.7 i am not able to drag and drop the data object in parameter list section.

    Infact i am trying to create a simple BPMN projoect but it doesn't allow the data object to be drag and dropped in the parameter list.
    This same thing was working fine for me in Jdev 11.1.1.6,Is there a bug in jdeve 11.1.1.7 ? Has anyone tested with the latest release?

  • Dvt:exportPivotTableData Does not work in JDev 12.1.2

    Hi All,
    I've been trying to get the export data from a Pivot Table to work using the dvt:exportPivotTableData tag. It does not. in my application I get a 404 error in a Google Chrome browser and an error dialog in IE10 when I press the button in the following source code snippet:
    [code]
    <af:button text="Export Pivot" id="b1">
         <dvt:exportPivotTableData filename="FeatureScores.xls" type="excelHTML"
              title="Feature Support Scores" exportedId="pt2"/>
    </af:button>
    <dvt:pivotTable id="pt2" value="#{bindings.ProductFeatureScoreROView1.pivotTableModel}"
                                                    var="cellData" varStatus="cellStatus" splitMode="enabled"
                                                    summary="#{viewcontrollerBundle.VENDOR_FEATURE_SCORES}" sizing="auto"
                                                    statusBarRendered="true" styleClass="AFStretchWidth">
    </dvt:pivotTable>
    [/code]
    I downloaded the ADF Rich Component WAR File (Version 12.1.1, or whatever the latest version is) and installed it in the JDev IDE to test the example sample. However, the dvt:exportPivotTableData doesn't work in the sample demo either. I don't get an error message from the sample, the page just refreshes and no data is exported.
    Any ideas?
    Best regards,
    Nigel

    Thank you, that solves the problem.
    Best regards,
    Nigel

  • Why is the hot redeploy not working in JDEV 11.1.1.6?

    Dear All,
    Using the JDEV 11G 11.1.1.5, I could perform a hot redeploy of my JSFF page when I am on debug mode.
    Say if I add an attribute to an input text, I could just save it and refresh the browser and I see my changes appearing.
    But when I tried doing the same in the latest release JDEV 11.1.16, I am encountering errors when I clicked refresh.
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error:
    java.lang.NullPointerException
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)Is there some configuration to make it behave as the older release?
    Thanks

    Hi, just to clear things out, this issue occur in JSFF only, but in jspx, hot code is fine...
    Here is my sample code where the issue occurs.
    HelloWorldTaskFlow.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="HelloWorldTaskFlow">
        <default-activity id="__1">viewHelloWorld</default-activity>
        <view id="viewHelloWorld">
          <page>/viewHelloWorld.jsff</page>
        </view>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>
    viewHelloWorld.jsff
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
      <af:panelBorderLayout id="pbl1">
        <f:facet name="start"/>
        <f:facet name="bottom"/>
        <f:facet name="end"/>
        <f:facet name="top"/>
        <af:panelBox text="PanelBox1" id="pb1">
          <f:facet name="toolbar"/>
          <af:outputText value="Hello World Nakurato!" id="ot1"
                         inlineStyle="font-size:x-large;"/>
        </af:panelBox>
      </af:panelBorderLayout>
    </jsp:root>
    TestPage.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:region value="#{bindings.HelloWorldTaskFlow1.regionModel}" id="r1"/>
            <af:inputText value="Hello"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>Any change in the jsff file does not take effect immediately when refresh. but in jspx, it works.
    Any thoughts???

  • JSP PageType does not work in JDev 10.1.3 or 10.1.3.1

    Am attempting to create tags for use with JSP pages using the SimpleTagSupport class (am using JDev 10.1.3). Can create the desired class and it shows up in its tld file. However, when attempt to register the tag into the Component Pallet using the following directions, as per JDev Help,
    Adding Pages and JSP Tags to the Component Palette
    You can add pages to the Component Palette in JDeveloper to include the tags from a custom JSP tag library you created or one you have imported. You can create a new page for each tag library you want to include on the Palette; if the tag library is large, you may want to include several new pages on which to organize the additional tags.
    Tip: Follow the steps in Registering a Custom Tag Library in JDeveloper to register the library if you do not want to add the library and tags to the Palette.
    To add pages and JSP tags to the Component Palette:
    1.     Choose Tools Configure Palette to open the Configure Component Palette dialog.
    2.     Click Add under the Pages list to open the New Palette Page dialog.
    3.     Enter a Page Name and select JSP as the Page Type, then click OK.
    The only available Page Types are the following
    css
    java
    oxd_usc
    snippet
    JSP is NOT an available option?
    I am having the same issue with JDv 10.1.3.1. If I use JDev 10.1.2 - Adding Pages and JSP Tags to the Component Palette - there is no problem and the JSP Page Type does show up.
    How does the one create a JSP tag in JDev 10.1.3 using SimpleTagSupport?????
    Thanks - Ken

    Steff - the tutorial was really quite helpful - for a variety of reasons.
    However, even though it gave enough information to circumvent the JDev problem, it does not fix the problem of JDev in not being able to display JSP as a Page Type.
    Would really like to find out how to use the JSP Page Type which seems to be broken? I do not like telling a customer - well JDev has a problem with specifying a JSP Page Type and even though the Help says you can do it - you really cann't.
    Again - THANKS for the great reference - Casey

  • Simple Substitution not working in Jdev

    I am trying to test a simple Substitution case in my environment. When I run my JSP in the base env with Substitution engaged then I get an exception. And when I run AM in the base project with Substitution engaged, then I don't see the new behavior. Following is my use case.
    1. Create ContactEO in the BaseProject. Default the first name to be 'DefaultFstName'
    2. Export ContactEO to an ADF Library.
    3. Create a jsp that exposes attributes from the ContactEO via the VO.
    4. Now create a new empty project in the same workspace, let's call it CustomProject.
    5. In the CustProject, include the library that was created as per step2.
    6. Create a new EO that extends ContactEO. Override attribute for First name and default it to 'CustomFstName'
    7. In the CustProject, define the substitution rule so that ContactEO is replaced with ContactEOExt.
    8. In the base project set Factory-Substitution-List=CustomProject
    If I run my jsp created as per step 3, I get the following exception. This is surprising because my CustomProject doesn't have any jsp pages and why is it even trying to look for CustomProject's cpx file? I am running the base app only here!
    oracle.jbo.NoXMLFileException: JBO-26001: XML File not found for the Container /CustomProject.cpx
    at oracle.jbo.mom.MOMParserMDS.parse(MOMParserMDS.java:193)
    at oracle.jbo.mom.MOMParserNonMDS.readAndParse(MOMParserNonMDS.java:70)
    at oracle.jbo.mom.DefinitionContextStandard.readAndParse(DefinitionContextStandard.java:229)
    at oracle.jbo.mom.DefinitionManager.loadProjectDefinition(DefinitionManager.java:1115)
    at oracle.jbo.mom.DefinitionManager.initProject(DefinitionManager.java:1180)
    at oracle.jbo.mom.DefinitionManager.initSubExtendsPropForProject(DefinitionManager.java:1157)
    at oracle.jbo.mom.DefinitionManager.initManager(DefinitionManager.java:243)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.initManager(JUMetaObjectManager.java:1218)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.<init>(JUMetaObjectManager.java:94)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.getJUMom(JUMetaObjectManager.java:293)
    at oracle.adfinternal.view.faces.config.rich.FacesDatabindingConfigurator._setupAdfDatabindingForJsf(FacesDatabindingConfigurator.java:64)
    at oracle.adfinternal.view.faces.config.rich.FacesDatabindingConfigurator.init(FacesDatabindingConfigurator.java:30)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.init(GlobalConfiguratorImpl.java:390)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.init(RegistrationFilter.java:47)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.init(TrinidadFilterImpl.java:92)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.init(TrinidadFilter.java:54)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpApplication.getFilterConfig(HttpApplication.java:8000)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:505)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:362)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:909)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:815)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:620)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:593)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:377)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:161)
    at com.evermind[Oracle Containers for J2EE 10g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:142)
    at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:878)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    at java.lang.Thread.run(Thread.java:619)
    If I run my AM in the base mode, after setting Factory-Substitution-List=CustomProject, I still don't see the new behavior. Any pointers to resolve both these issues would be greatly appreciated.
    thanks,
    deepinder

    You can use this forum JDeveloper and ADF
    This is specific to ADF Issues.

  • Using of Oracle Text functions not working in JDev

    Hi,
    I'm confused about using Oracle Text functions in JDeveloper.
    It's not possible for me to pass the sql syntax test while creating a view object with a custom query:
    SELECT score (1) myScore,
    dokumente.titel,
    ctx_doc.snippet ('idx_dokumente_titel',
    TO_CHAR (dokumente.dkt_id),
    'searchstring'
    ) snippet
    FROM dokumente
    WHERE contains (titel, 'searchstring', 1) > 0;
    I retrieve "ORA-00911:     invalid character" for the contains-function.
    (Using this statement in sql-worksheet works.)
    Any ideas?

    Hi william,
       Yes you need code abap to maintein your data. look at <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/2f/696d360856e808e10000009b38f839/frameset.htm">Business Data Toolset</a>, in the part of Dialog.
    Regards.
    Manuel

  • ClassSpy ESDK sample does not work in JDev 11g. Works fine in 10g.

    I downloaded and unzipped JDev 11g.
    downloaded the ESDK samples via check updates.
    Installed samples and deployed them.
    When I UI debug classSpy sample , selecting jdev/bin/jdev.conf as a default run target , I get the following error.
    java.lang.IllegalStateException: Unable to create an InitialContext.
    The complete log of the UI debug window is as below.
    D:\Official\JDEV11G\jdk\bin\javaw.exe -client -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=2174 -Dhttp.proxyHost=emeacache.uk.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=null -Dhttps.proxyHost=emeacache.uk.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=null -Xmx512M -Xverify:none -XX:JavaPriority10_To_OSPriority=10 -XX:JavaPriority9_To_OSPriority=9 -XX:MaxPermSize=160M -Xbootclasspath/p:../lib/lwawt.jar -Dide.config_pathname=D:\Official\JDEV11G\jdev\bin\jdev.conf -Djava.class.path=..\..\ide\lib\ide-boot.jar;D:\Official\JDEV11G\jdev\lib\jdev-remote.jar -Dlaunched.from.jdev=true oracle.jdevimpl.runner.uidebug.debuggee.Debuggee -silent oracle.ide.boot.Launcher
    Listening for transport dt_socket at address: 2174
    Debugger connected to local process.
    Processing 276 classes that have already been prepared...
    Finished processing prepared classes.
    Exception breakpoint occurred at line 145 of EventDispatchThread.java.
    java.lang.IllegalStateException: Unable to create an InitialContext.

    As this is a preview release, not all extension have been updated to support 11g.
    Regards,
    Ric

  • Print Settings not working in JDev 9.0.3??

    I'm trying to print source code from JDevleoper 9.0.3.1035 and am having some problems.
    Is there a way to set the page to print in Landscape? I've tried from the Page Setup and Print Menu's and neither are working for me?
    Also, is there a way to print the way JDev 3.2 used to? It used to fit a lot more code on a single page?
    Please Please restore JDev 3.2 printing capabilities in JDev 9?
    Thanks
    Bret

    Works for me.
    What OS/JDK etc are you using?

  • Design mode not working in Jdev 10g

    Hi All
    I am facing some problem in Jdeveloper 10g. I created a project few days back. Today when I am opening jsp pages of that project, It is not coming in the Design mode. It writes only "Page Directives" instead of showing Forms and Tables. But when I run them, it shows the tables etc properly in browser.
    Can anybode help me out to open the page in Design mode again.
    Regards
    Rexy

    Hi Chris
    According to the note, These files gate changed when they are inside WEB-INF. But in my case, these files are parallel to WEB-INF and still they are showing this kind of behaviour.
    Regards
    Rajat

Maybe you are looking for

  • Problem downloading new Classic software.

    I plugged my iPod in a few minutes ago to discover that a new software download was available for my iPod Classic. When I click 'download and install', a pop-up window appears, telling me what's contained in the new software. From here, I click 'Next

  • How to mark email messages as Not Junk?

    When I look in the Junk email folder in Mac Mail, I see messages that I did not mark as junk mail.  I guess Mac Mail is somehow filtering and classifying the messages as junk.  Within the Junk folder, however, there are messages that are not junk.  H

  • IPod Won't Detect Video

    hello, my video iPod will not detect that a video is video and categorizes it as a music file, and when I select "get info" on the particular video, all the tabs (summary, info, options, lyrics, artwork) are all available except the video tab. I can'

  • Error in search results on forums

    Searching the Designer discussion forum for the word "extension" delivered several messages. In the search results the subjects and authors of these messages did not match. This seems a bug to me. Succes with OTN

  • Copying pictures to edit

    hola! i copied my original picture, put it in another folder and edited the copy. i went back to the original just to make sure it was the same, and yep it wasn't. totally edited as well. so, how do i copy a picture to edit it for fun, and keep the o