30_pin accessories?

I have had a Timecommand audio Alarm Clock for less than a year. Will the new iPhone lightning to 30-pin adapter work with my TimeCommand? The Apple Website mentions that the lightning adapter will not work with all accessories. (I need to get a larger capacity iPhone then 16 GB).

I KNOW that!!My only reason I will upgrade right now is to go from 16 GB to 32 GB. I am concerned whether or not my TimeCommand will work with the lightning adapter, when I upgrade.

Similar Messages

  • New inserted detail row is not showing through accessor

    I have to insert master and detail row. I insert row in master view  and then I get detail row using getAttribute on master view. Then I insert row into detail row. Result is one inserted master row and no data display in detail view.
    How ever in managed bean when I get master view using finditerator and then get detail row also using finditerator on the specific page then rows inserted on master and detail view appear.
    DCIteratorBinding dcIter =             ADFUtils.findIterator("PlotMst1Iterator");
    ViewObject mvo = dcIter.getViewObject();
    mvo.insertRowAtRangeIndex(0, row);
    mvo.setCurrentRow(row);
    Row row = mvo.createRow();
    // DETAIL ACCESSOR  not working
      //  RowSet Pd = (RowSet) row.getAttribute("PlotDtl");
    DCIteratorBinding dcIter2 =       ADFUtils.findIterator("PlotDtl2Iterator");      
    ViewObject dvo = dcIter2.getViewObject();
    nvp.setAttribute("FabricCode",r.getAttribute("FabricCode"));
    Row drow = dvo.createAndInitRow(nvp);      
    dvo.insertRow(drow);   

    Hi,
    its a classical programming mistake you do. You create a new row on the model layer and not the binding layer. The proper way of doing this would be to
    1) either create a method binding for the "CreateInsert" operation in the PageDef file and call it from there
    or
    2) DCIteratorBinding dcIter = ADFUtils.findIterator("PlotMst1Iterator");
        Row rw = dcIter.getRowSetIterator().createRow();
    Same for your attempt to create the detail row. Again you can expose the createInsert operation in the PageDef file or use the RowSetIterator. As you create a master and detail row at the same time, be aware of a constraint problem that may arise from this as you have no guarantee that the master is inserted first. Read this http://docs.oracle.com/cd/E35521_01/web.111230/e16182/bcentities.htm#CEGJAFCF to learn about the problem.
    Note that use case often matters. While I can see where your coding goes wrong, I can't tell if your approach in general could be chosen better
    Frank

  • What's the Java Class Type corresponding 2 projectGantt's SubTasks Accessor

    Hi,
    I expose my java class as data control, and use the data control as a projectGantt. I get problem when i try to set the SubTask Accessor.
    I have a Fusion Web App, in the Model project, i write 2 java class: ( all the private fields has public gettors and settors which are omitted here)
    1
    public class GanttTask {
    private List<GanttTask> _subTaskList = new ArrayList<GanttTask>();
    2
    public class GanttDataControl {
    private List<GanttTask> _dataList;
    I expose the 2nd class: GanttDataControl.java as a data control by right click on it and select _"Create Data Control "_ from the drop down list.
    The data control creation is ok.
    I Drag&Drop the +"dataList"+ from the data control as a projectGantt, and only finish the data binding in the _"Tasks"_ tab.
    I run the page, the projectGantt shows ok with a FLAT(list) structure.
    I try to set the binding in _"Subtasks"_ tab.
    In the _"Subtasks Accessor"_ LOV, the +"subTaskList"+ appears in the LOV.
    I select it and finish the binding below it.
    I try to run the page again, the page cannot be showed and an error appears in JDeveloper:
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    oracle.jbo.NoDefException: JBO-25058: Definition subTaskList of type Attribute is not found in ViewDefGanttTask1_7.
         at oracle.jbo.server.ViewObjectImpl.findAttributeDef(ViewObjectImpl.java:7100)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding.getRootNodeBinding(FacesGanttBinding.java:157)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getParent(RowDataManager.java:312)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getRowCount(RowDataManager.java:287)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$GanttModel.getRowCount(FacesGanttBinding.java:465)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$ProjectGanttModel.getRowCount(FacesGanttBinding.java:613)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichProjectGanttRenderer.encodeGantt(RichProjectGanttRenderer.java:388)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichGanttRenderer.encodeAll(RichGanttRenderer.java:1307)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:538)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:399)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:220)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:399)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1273)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:800)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:294)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:214)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <15-Feb-2012 11:46:59 o'clock CST> <Error> <HTTP> <BEA-101020> <[ServletContext@19732978[app:testGantt0214 module:testGantt0214-ViewController-context-root path:/testGantt0214-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
    oracle.jbo.NoDefException: JBO-25058: Definition subTaskList of type Attribute is not found in ViewDefGanttTask1_7.
         at oracle.jbo.server.ViewObjectImpl.findAttributeDef(ViewObjectImpl.java:7100)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding.getRootNodeBinding(FacesGanttBinding.java:157)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getParent(RowDataManager.java:312)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getRowCount(RowDataManager.java:287)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$GanttModel.getRowCount(FacesGanttBinding.java:465)
         Truncated. see log file for complete stacktrace
    >
    <15-Feb-2012 11:46:59 o'clock CST> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'DefaultServer' has triggered at 15-Feb-2012 11:46:59 o'clock CST. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = 15-Feb-2012 11:46:59 o'clock CST SERVER = DefaultServer MESSAGE = [ServletContext@19732978[app:testGantt0214 module:testGantt0214-ViewController-context-root path:/testGantt0214-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
    oracle.jbo.NoDefException: JBO-25058: Definition subTaskList of type Attribute is not found in ViewDefGanttTask1_7.
         at oracle.jbo.server.ViewObjectImpl.findAttributeDef(ViewObjectImpl.java:7100)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding.getRootNodeBinding(FacesGanttBinding.java:157)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getParent(RowDataManager.java:312)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.RowDataManager.getRowCount(RowDataManager.java:287)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$GanttModel.getRowCount(FacesGanttBinding.java:465)
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$ProjectGanttModel.getRowCount(FacesGanttBinding.java:613)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichProjectGanttRenderer.encodeGantt(RichProjectGanttRenderer.java:388)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichGanttRenderer.encodeAll(RichGanttRenderer.java:1307)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:538)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:399)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:220)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:399)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1273)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:800)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:294)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:214)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = Pen-PC TXID = CONTEXTID = 026fd69aaf53f3f5:-30631c41:1357f1e4b9d:-8000-0000000000000028 TIMESTAMP = 1329277619970
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000

    i try to manually add the subTaskList from the data control to the page's "Bindings", it doesnt work.
    I solve this problem by using VO & View Link. Add using AM to expose data control.
    In the SubTasks dropdown list, I notice that, there is an additional SubTasks accessor which is the accessor that i defined in the View Link.
    I use this accessor, problem solves!

  • Bug in bc4j?, view links at runtime, multi table relationships, accessor name

    The following seems like a bug in the business components framework
    to me:
    To make things simple, I will use view objects aV, bV, cV,
    corresponding rows aR, bR, cR and row iterators aI (not used though),
    bI, cI.
    I create two view links from aV to bV and from bV to cV at runtime,
    with the accessor names "Bs" and "Cs".
    ViewLink a2b = createViewLinkBetweenViewObjects(..., "Bs", ...);
    ViewLink b2c = createViewLinkBetweenViewObjects(..., "Cs", ...);
    First of all this code works perfectly fine:
    ViewObject aV = a2b.getSource();
    ViewObject bV = a2b.getDestination();
    ViewObject cV = b2c.getDestination();
    while(aV.hasNext())
    Row aR = aV.next();
    System.err.println("aR");
    while(bV.hasNext())
    Row bR=bI.next();
    System.err.println(" bR");
    while(cV.hasNext())
    Row cR=cI.next();
    System.err.println(" cR");
    Using the accessor name "Bs" at the first level is ok, too:
    ViewObject aV = a2b.getSource();
    while(aV.hasNext())
    Row aR = aV.next();
    System.err.println("aR");
    RowIterator bI=(RowIterator)aR.getAttribute("Bs");
    while(bI.hasNext())
    Row bR=bI.next();
    System.err.println(" bR");
    HOWEVER, USING THE ACCESSOR "Cs" AT THE SECOND LEVEL OF THE MULTITABLE
    RELATIONSHIP IN THE FOLLOWING CODE, GIVES ME AN EXCEPTION
    oracle.jbo.NoDefException: JBO-25002: Definition Cs of type Attribute
    not found. THE SEEMS LEGAL USAGE OF THE ACCESSOR "Cs" TOO ME THOUGH,
    THEREFORE MY SUSPICION OF A BUG.
    ViewObject aV = a2b.getSource();
    while(aV.hasNext())
    Row aR = aV.next();
    System.err.println("aR");
    RowIterator bI=(RowIterator)aR.getAttribute("Bs");
    while(bI.hasNext())
    Row bR=bI.next();
    System.err.println(" bR");
    RowIterator cI=(RowIterator)bR.getAttribute("Cs");
    while(cI.hasNext())
    Row cR=cI.next();
    System.err.println(" cR");
    (By the way, could make your window for filling in the message a little bit wider,
    making it easier to cope with the line breaks).
    Feedback is appreciated.
    Andreas Reuleaux
    Klopotek & Partner
    [email protected]
    null

    Your results are as expected per the imlementation. Basically you've established (two) ViewLinks between two sets of two instances of VOs.
    Now you try and get an accessor to return a set of details. You need to establish a link between that detail set and it's details to use the accessor on the second detail to get the desired results. Basically you've to establish the chaining between appropriate instances of VOs and not just the outer VOs or VO members of your AM.

  • How to get the view link definition from the view link accessor

    Hi,
    I am using Jdev 10.1.3 and ADF BC. I am trying to do deep copy in a master/details view, after the new child record is created, I want to update the foreign key attribute. I know I can get the list of attribute definitions from the row in the view object, which include the view link accessors, I am wondering if I can get the view link definition from the view link accessors, so that I can get the source and destination attribute names.
    Thanks!

    Hi,
    you should get this through
    ViewObject vo = this.findViewObject("LocationsView1");
    int indx = vo.getAttributeIndexOf("DepartmentsView");
    ViewAttributeDefImpl vAttrDefImpl = (ViewAttributeDefImpl) vo.getAttributeDef(indx);
    ViewLinkDefImpl vdefImpl = (ViewLinkDefImpl) vAttrDefImpl.findViewLinkDefImpl();
    Note that this code starts from the ApplicationModuleImpl class, which is why I used this.findViewObject().
    Frank

  • My T420 Review + Warranty Experience + Accessorie​s & Upgrades

    I received my T420 earlier this week and wanted to let everyone know my experiences with the machine itself as well as some accessories I purchased for it. You will see comparisons to the T400. The T400 is my SO's machine. Machine details for both are in my sig. The T420 shipped with a 500GB HDD & 4GB (4x1) RAM. This review is mainly about the T420 with the HDD installed, but with 8GB of RAM.
    A little about me
    As a student I mainly care about battery life, boot/ resume time, and system stability. Stability is very important to me because I take my class notes on my computer and we take exams on our computers as well. If I have computer issues during an exam, I could receive a worse grade or even fail. I fell in love with Thinkpads and the trackpoint the first time I ever used one years ago back in the era of 266MHz processors. While I have owned other laptop brands (Gateway, Acer, Compaq) it was soley because of price. I am happy to have a Thinkpad to call my own again.
    For a while, I considered an x220, the x220t, and the W520. I decided I could not live with the screen resolution on the x220, the 3yr Think Pad protection + on-site was too much on the x220t ($459 vs $259 for other Think Pads), and I did not want to haul around the extra weight and size of the W520. This is my third 14" ThinkPad. I bought the machine during a sale where there was a free upgrade to 500GB HDD and 4GB of RAM. At the same time there was an extra 5% off on any T series. With those deals and the educational discount, I felt the T420 was an excellent deal.
    Summary
    Pros: Speed; Battery life; I do not have a screen door screen; warranty service is great; Keyboard is a joy to type on.
    Cons: Louder than the T400 (T420 seems to have smaller heatsink). Mainboard, Keyboard, and Palm rest had to be replaced. Keyboard needs to be replaced again. Smelled bad when taking out of box. 14W sleeve is too big.
    Review
    When I unboxed the machine the fist thing I noticed was a horrible smell that I can only describe as "new computer smell" it was a mixture of ozone plus melted plastic. The 9 cell sure is a big battery. I only have a 6 cell on my T400. The 9 cell on the T420 sticks out about the same amount as the 6 cell on the T400 does. Machine feels like a good weight and very solid. Weighs 5.2lbs without the power brick (with HDD + 8GB RAM, Optical Drive, and 9 cell battery).
    When I pressed the power button the first thing I noticed was that I could hear the fan. The fan on the T400 is almost inaudible. On the T420, you can hear the fan is there, but it is a quiet and soft fan noise. The T420 seems to have a smaller heat sink compared to the T400. The machine boots fast even with the HDD installed taking only about 80-90 seconds or so after applying all Windows updates. Display resolution of 1600x900 is very sharp and useful for putting documents side by side. My external monitors are 16:9 displays (2x Dell U2211h) so it is nice to have matching aspect ratios. I would prefer 16:10, but 16:9 at 1600x900 is enough pixels. Optimus works fine and allowed me to have both of the U2211h at 1920x1080 and the internal display on at the same time. I had one monitor connected through VGA and the other over display port. I do not see the screen door effect that some people have had issues with on these screens. I was very worried about the screen door, so I am glad not to have it.
    I mainly use my computer to run Office, One Note, and write emails. I rarely do any gaming on my laptop. I do some image editing (GIMP, Inkscape) and both programs run fine with great speed. Machine sleeps and hibernates fine. I get great range and speed with the internal wireless card that is better than most people. Ran a graphics intensive benchmark and Optimus works great. Battery life seems amazing so far. I only used about 10% in an meeting that lasted over an hour. I was only typing during the meeting so I had the brightness turned down to 2. If I wanted to I could probably use just the battery and leave the adapter at home.
    Accessories
    I bought the machine with the 14W Sleeve (57Y4294). The sleeve is gigantic and does not fit right. I think it was designed to hold the machine with a 9 cell battery + the slice + the power adapter. I will check later, but I think I could probably fit the T400 and the T420 into the sleeve at the same time and it would still have extra room. I may return the sleeve and buy a different one as I was hoping for a better fit. I have no idea why they offer the 15W Sleeve during the ordering process as the 14W is huge.
    Upgrades
    I added an extra 4GB of Samsung RAM, an Intel 320 SSD in the 160 GB size, and an AKE USB 3.0 Expresscard 34. I planned to use the USB 3.0 express card with the 500GB drive in an external enclosure as a backup for both the T420 and T400. If I was just looking for the T420 I would simply have used the eSATA port as I feel eSATA is probably faster than USB 3.0.
    The RAM works great with the factory installed Samsung RAM. The RAM was easy to install, since the cover is on the bottom of the machine. If you are upgrading both RAM slots, the other slot is under the keyboard. The HMM shows the keyboard as being held in with only one screw so it is probably easy to upgrade.
    I bought the 320 because it is supposed to be as reliable as the X-25M. My Intel 320 SSD died on me within 12 hours of installing it into the machine. I experienced the 8MB bug, where the drive dies and reports as unformatted and 8MB in size, normally after an "unsafe" shutdown (as in holding down the power button/ sudden loss of power). There has been talk of this bug on the Intel Forums since June, see this post or just Google for more details about the issue many 320 owners are experiencing. My replacement 320 is here now, and I will see if I can get >12 hours of use out of it. The Intel Data Migration software did work well and it cloned the drive over and resized the partitions just fine. I was able to see speeds of up to 250MB/sec with the SSD internally. I regret purchasing the 320, and if the second dies on me I will ask for a refund and buy something else.
    The AKE USB 3.0 Express Card has the NEC USB chipset. These are known to get around 180MB/sec when mounted on a motherboard and connected to a fast SSD. I saw speeds of up to 185MB/sec when connected to the Intel SSD. I am happy with the Express card. It sits flush in the Express Card slot. It does look ugly with the extra USB cable for power, but that is necessary to supply full power to a USB 3.0 device.
    Warranty Service (2 Keyboards, 1 Palm Rest, 1 System Board)
    When I purchased the 3yr warranty with Think Pad protection and on-site service, I never thought I would need to use it in the first week. I notice that the Trackpoint seemed a little jumpy when I first started using the machine. The first night I had the machine I was working on a project, something caused the machine to hang and it shutdown. On reboot, the machine refused to POST. My first thought was that I seated the RAM improperly, so I took that out. It did not help. I reseated the SSD, nothing. Tried the original HDD, nothing. Put the SSD back in. The keyboard had the microphone mute, speaker mute, and caps lock lights on when the machine was off. That seemed odd to me. Next day, I called up service center. It said it was in Atlanta, Georgia, but guy I spoke to had such a heavy accent I had to have him repeat everything 2-3 times. He had me run through some things and decided that the keyboard was fine, but that the system board needed to be replaced.
    A friendly Tech came out and replaced the system board. System booted off of the tech's usb floppy to run a utility. Lights were still on the keyboard. Keyboard did not work. I grabbed a USB external keyboard + mouse combo from my desktop and plugged it in. USB mouse and keyboard worked fine. Tech attempted to boot into Windows. System did not recognize SSD on first two boots, third boot it worked. Odd beeping sound in Windows, put volume on mute. Laptop keyboard still did not work, and touchpad was very jumpy. Tech called to order keyboard + palm rest (touchpad) and I ran ThinkVantage Toolbox scan. Machine passed. Reactivated Windows. I then used the machine for a few hours, and then hibernated it. When I came back, it acted like the SSD was not there.
    Tech arrived the next day with Keyboard + palm rest. I was very happy that the part was overnighted. New keyboard installed. Seemed like everything was working. System refused to boot off of the SSD. Put in HDD, system boots fine. I ran ThinkVantage Toolbox scan and the machine passed. A few hours after the tech left, I noticed that my J & K keys were acting odd. Turned out keyboard screw was hitting underneath them and making it hard to press down. See this thread for more. Called tech support, guy I spoke with did not have an accent and seemed like a native English speaker. Happy to have someone I could understand on the phone. Backedout the keyboard screw about halfway and now I can type normally. Tech support is concerned that the keyboard may have been damaged by the screw, so they are sending a new keyboard and a screw kit. Scew kit is backordered, so for now I just have to wait.
    I have been happy with the on-site service because it is much faster than having to ship off a machine to have it repaired. I am going to look into upgrading the depot warranty on my T400 to on-site. I am chalking up the problem with the system board and keyboard to the bathtub curve and I do not see these as major issues. I wish that they would have shipped both a keyboard and a system board.
    Overall I am happy with my T420 and very happy with the warranty service. I would feel confident recommending this machine with the warranty to family and friends.
    When asking for help, post your question in the forum. Remember to include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help others with the same question in the future.
    My TPs: Twist 2HU: i5-3317U Win 8 Pro, 4GB RAM 250GB Samsung 840 | T420 4177CTO: i5-2520M, HD+, Win 7 Pro x64, 8GB RAM, Optimus, 160GB Intel 320 SSD, Intel 6300 WiFi, BT 3.0 | T400 2764CTO: P8700, WXGA, Win 7 Ult x64, AMD 3470, 8GB RAM, 64GB Samsung SSD, BT, Intel 5300 WiFi | A20m 14.1" PIII 500 (retired). Monitors: 2x Dell U2211h IPS 100% sRGB calibrated w/ Spyder3.

    Hi nibs,
    Nice review.  Thanks.
    That screw deal is very strange.  I wonder if the tech mixed up two screw sizes? Maybe there's a short one somewhere just barely hanging on.  Do the screw holes on your machine have a size # next to them.  Just curious.
    @ seasidegator, your link doesn't work as is.  The "." at the end of the sentence got included in the link.
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Several questions - new to Creative Zen Touch - please help (ripping/accessori

    Hi, I just ordered my new Zen Touch 20gb online last night with a set of Sony earbuds (MDR-EX5LP). I'm pretty excited, get it this Friday.
    I just had a few questions in advance:
    A) Which programs are best for ripping, allow you to adjust the quality of the songs, and won't cause problems when burnt cds are ripped (saw a thread earlier that complained of bad quality when burnt cds were ripped to MP3 that worried me)?
    B) What different types of cables/accessories would you recommend for wiring the Creative up to a stereo? On CNet.com and various other sites, they talk about how the Creative sounds great through speakers, and I'm really excited to hook that up, but I don't know A) Which cable to buy that will work well with the Creative/have good sound quality, B) Where to plug it in - headphone jack? (no analog Line Out, right?)
    C) Has anyone had any experience with the remote? Is it pretty durable? I'm not going to plop down 50 plus shipping and handling, wait 2-3 weeks for the backorder, only to have it fall to bits in a few weeks.
    Thanks SO much! I appreciate any and all help. I'm new to Creative/Mp3 players as a whole, so forgive any ignorance/mistakes.

    I have used WMP0 exclusi'vely for ripping CDs. I rip WMAs at 28kbps, though you may want to go up to 92kbps if you can hear the difference (some people recommed ripping a song at both and deciding which is best). I sync all my CDs with WMP0 too, and have had no issues. One thing to caution you is to make sure your ID3 tags are correct before you sync up. What I mean by this is to make sure the album name, track titles, and artist names are to your liking. 90% it is not an issue, but sometimes, the titles have extra characters you may not wish to have. If you have more than one artist listed on a track, only the first one is loaded. So if you have, say: "EmmyLou Harris; Buddy Miller", the track is stored under artist Emmylou Harris only.</LI>
    Belkin sells this Dell DJ base that the ZT will fit into (there is another thread on that here). That seems like a nice option. You do go out of your headphone jack. Any chord that has the headphone jack on one end, and stereo RCA (red, white) jacks on the other end will do.</LI>
    See other threads about the FM remote. I read some concerns about their durability, but read for yourself and decide.</LI>

  • Creative mp3 accessor

    >I am looking at the c and I can find much for in car devices like ?all in one holders?. Belkin to a fantastic range for the ipod but yet im finding it hard to get something that is designed for any creative mp3 player! If anyone could let me know if there is such a range or if there soon will be it will be of great help! Cheers

    You can find the accessories for Zen V Plus from Creative website, see the right hand side of this webpage. http://us.creative.com/products/prod...4&product=5306?
    The store in which you got the Zen V Plus would inevitably have some accessories you can use too.Message Edited by eddy2099 on 02-06-2008:0 AM

  • I would like to sell Apple accessories, but how to go about it?

    Hi all and thank you for reading this post.
    I am from overseas, and very much interested in selling some Apple products and accessories to Apple users back in my country. Of course, i can not qualify to be a certified reseller, due to requirement. I plan to take pre-orders for desired accessory or product and then purchase them form Apple store and send it back to my country. Will i have issues, if i go to an Apple store and purchase necessary items? Is there any limit on number i can purchase? What is the best way to go about it? I would not like to break a law. thank you for your help.
    P.s. i know, some of my acquaintances do this sort of business, then it works? I am not sure though how do they purchase the necessary volume at a retail location?

    Purchases from an Apple Store are not intended for resale and such resale is expressly prohibited by the Apple Store terms of sale:
    "Sales to End Users Only
    The Apple Store sells and ships products to end user customers only. You may not purchase for resale. Apple reserves the right to refuse or cancel your order if Apple suspects you are purchasing for resale."
    If you are interested in reselling Apple-brand accessories, I would suggest you contact Apple and see if there is some middle level of authorization where you could be authorized to resell accessories. Otherwise, this is not something that would be allowed.
    Regards.

  • BPEL Server and Table Accessors

    I am pretty sure I know the answer is no to this but I just need confirmation. Is it possible for the BPEL server to go through table accessors to get to its own tables (the tables it uses to store its process states and what not)? By accessors, I mean a middleman piece of code that checks security and the like before allowing any queries to go through.
    Thanks

    You may be able to do something at the database level by using the VPD facilities.
    http://www.oracle.com/technology/obe/obe10gdb/security/vpd/vpd.htm
    This would require no changes to BPEL, and is implemented by the database where BPEL stores its data.
    Toby

  • Can I use my old accessories for a 40GB (4G) iPod with new 160GB iPod Classic?

    I just purchased a 160GB (7G) iPod Classic. I had been using a 40GB (4G) iPod.
    The male connectors on  the accessories I used with my 40GB iPod seem to fit into the female connector on my new 160 GB. So, I am wondering if I can use these old accessories with my new 160GB iPod Classic. The old accessories I used with my 40GB (4G) iPod are as follows.
    1) Wall charger made by Apple. It has a firewire connection at one end of the charger cord which connects to  the small white plastic box of the charger that plugs into the wall. The other end of the charger cord seems to fit my iPod 160GB Classic.
    2) Dock made by Apple. It uses a firewire connection cord to my computer, in contrast to the USB connection cord that came with my 160GB iPod Classic.
    3) Car chargers that worked with my old 40GB, 4G  iPod. The car charger connectors seems to fit my new 160GB iPod Classic. One car charger is made by Apple. The other is not made by Apple.
    So, could you please tell me if I can use any or all of these old accessories with my new 160GB Classic without damaging it.
    Thanks.
    Richard

    No.
    Stedman

  • "The folder path 'Accessories/Quicktime' contains an invalid character."

    After countless attempts to install iTunes 9.2.1 for Windows 64-bit processors I keep getting this message: "The folder path 'Accessories/Quicktime' contains an invalid character."
    How do I correct this so I can install and finally use iTunes?

    It usually indicates trouble with one of the msi files for an existing program on the PC that is being updated by one of the installers in the iTunes64Setup.exe bundle ... but I'm not familiar with that particular Accessories/QuickTime folder path myself.
    Can you check something for me please?
    Do a search for an "Accessories" folder on the PC. Do any of them have a "QuickTime" subfolder inside them? If so, what is the full file to those directories?
    (Trying to work out which particular msi is causing the trouble ... or if there's a slightly different cause of the problem afoot.)

  • Ipod nano compatibility with ipod accessories

    Is the ipod nano compatible with other ipod accessories? Will it work with my Bose speaker system built for the ipod? Will the car charger and battery backups that I have purchased for my ipods work with the nano? thanks

    I want to get an ipod nano, but i have the earbud headphones that i bought separately from the ipod. you know, the ones with the 3 different rubber sizes or your ears? well i was wondering if it would work with the ipod nano. i saw that the nano had different headphones.

  • IPod touch(4th gen) no longer supports accessories?

    http://www.pinterest.com/pin/create/extension/
    My iPod touch (4th gen) suddenly stopped supporting my Altec Lansing speakers, my iHome and my Onkyo dock.  I have updated to the latest version of iTunes, reset my iPod, wiped and restored my iPod (running iOS 6.1.6), turned my iPod off and on, unplugged and plugged back in all of the accessories...all to no avail.  The iPod will charge on all of the docks, so they recognize it, but the iPod says "This Accessory is Not Supported by iPod touch".  Last week it all worked fine. 

    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Reset the accessories

  • Older accessories work w/ iphone 3GS, then stop working?

    So about a month ago the office moved from samsung smartphones to the iPhone 3Gs. sweet.
    When I first got it, I did some testing with the existing ipod accessories I have - a sony radio/alarm clock, and the headunit adapter I have for my mazda.
    The alarm clock worked fine with the exception of the "airplane mode warning" and the car adapter worked similarly but wouldn't charge. Fine with me, I'll use the classic on long trips anyway.
    But about a week and a half ago, I noticed that the alarm clock had stopped working normally. It would charge but not play music, using the clock's buzzer instead of playing my wake up music.
    Then today I plugged the iphone into the car for the first time in a couple weeks, and it started playing music when plugged in, but only through the phone's tinny internal speakers. Nothing I could do would route it through the car audio system.
    What could cause the iphone to suddenly stop feeding line-out to accessories? Anybody seen this before?
    Apologies if this has bee posted before, I did scan through a few pages of posts before posting.
    Thanks.
    P.S. Make itunes 9 work with XPx64. Please.

    Have you tried to restore it?

Maybe you are looking for