Compile error after migration from JDeveloper 11.1.1.4 to 11.1.2

Hi,
I have recently downloaded JDeveloper 11.1.2 and I need to migrate from 11.1.1.4.
I got the following error message:
Error: An unreported error occurred in Appc. No errors were reported, but the tool returned a failure result code:1.
Can somebody suggest me how do I go about this?
Regards

see {thread:id=2241934}

Similar Messages

  • Trigger compile with after migrated from 8i to 10g

    Hi All,
    We try to migrate a 8i database to 10g by using the exp and imp. All tables and data are already migrated by imp. During the imp, there are errors said the trigger compile with errors.
    When login to the em to check, I found these 2 errors.
    Line # = 2 Column # = 1 Error Text = PL/SQL: SQL Statement ignored
    Line # = 2 Column # = 60 Error Text = PL/SQL: ORA-00942: table or view does not exist
    My trigger is a very simple one:
    BEGIN
    Select TB_COUNTER_SEQ.NEXTVAL INTO :NEW.INCREMENT_NUM FROM DUAL;
    END;
    And I'm sure the "TB_COUNER_SEQ" is there.
    Do I need to change anything on the trigger when migrating from 8i?
    In fact, besides this trigger, all other trigger imp to this schema are having the same error. The schema in the 10g is a newly created one, is there any special right I need to create grant to this new user?
    Thanks a lot.
    Mike

    Hi, Mike,
    user3211655 wrote:
    Hi All,
    We try to migrate a 8i database to 10g by using the exp and imp. All tables and data are already migrated by imp. During the imp, there are errors said the trigger compile with errors.
    When login to the em to check, I found these 2 errors.
    Line # = 2 Column # = 1 Error Text = PL/SQL: SQL Statement ignored
    Line # = 2 Column # = 60 Error Text = PL/SQL: ORA-00942: table or view does not exist
    My trigger is a very simple one:
    BEGIN
    Select TB_COUNTER_SEQ.NEXTVAL INTO :NEW.INCREMENT_NUM FROM DUAL;
    END;
    And I'm sure the "TB_COUNER_SEQ" is there.
    Do I need to change anything on the trigger when migrating from 8i?
    In fact, besides this trigger, all other trigger imp to this schema are having the same error. The schema in the 10g is a newly created one, is there any special right I need to create grant to this new user?Grant the necessary privileges on the tables (and any other objects used, like sequences) directly to the owner of the triggers. Privileges granted to a role don't count in AUTHID OWNER stored procedures; the privileges have to be granted to the owner of the stored procedure (or to PUBLIC).
    It the error is occurring at position 60, then it looks like you don't have privileges on dual. Login as SYS and
    GRANT SELECT ON dual TO PUBLIC;You may need synonyms (perhaps public synonyms) for the objects, too.

  • JDev 10.1.2.1: Errors after migration from 9.0.5.2

    We have a rather large project here.
    We're just in the process of migrating to 10.1.2.1 but we're facing a couple of problems. One of them is this:
    When JDev loads the business components (for example when we expand a package containing BCs) we get error messages coming from two VOs (each in a different package) stating that entity attributes of the VO cannot be found.
    The one VO is pretty much dead, you cannot even open the wizard for it.
    In the other VO the attributes are set to transient. I can delete the transient attributes and re-add them from the entity without problem. When I close JDev and reopen it, the attributes are back to transient.
    The only thing I can see that both VOs have in common is the entity. The entity is in a third BC package. I cannot find anything wrong with it. When I rewrite the entity nothing (except the version number) is changed. Same applies to the VOs. No changes worth mentioning when I re-create them and compare them to the 9.0.5.2 versions.
    Now the strange thing is this:
    As I wrote before, the errors come from two VOs in two different packages. The
    entity is in a third package.
    Now I have just observed:
    I close JDev with the package tree in the Applications Navigator closed and
    restart it.
    I then navigate to some random package and open the bc folder -> one error from
    both VOs.
    But when the first bc package is one of the packages with the problem VOs, then
    only one error is produced: from the VO in the other package.
    Example: I open a fourth BC package accounting.bc first -> two errors
    from multiplepatientid.bc.MpiAuthorityDomainLovView and
    staff.bc.StaffMemberAliasEditView.
    When the first BC package I open is staff.bc then I only get the error from
    multiplepatientid.bc.MpiAuthorityDomainLovView. StaffMemberAliasEditView
    works!
    When the first BC package I open is multiplepatientid.bc then I only get the
    error from staff.bc.StaffMemberAliasEditView. MpiAuthorityDomainLovView works!
    Weird isn't it. It seems to depend on the order in which Jdeveloper loads the
    BCs.
    I tried to re-create the project file, to re-migrate the workspace .... nothing has helped.
    The application still works as expected. Just JDev fails to load the business components.
    So, has anyone encountered a similar problem so far?
    I created a TAR for that but the support guy is as puzzled as I am.
    Sascha

    Just for the record:
    This is bug 4669535. We received a one-off patch for it.
    Thanks to everyone at Oracle who was involved.
    Sascha

  • Buffer to small ORA-22835 error after migration from 9i to 10g

    Hello Oracle-Experts,
    I had to calculate hash-values for a corresponding clob-field which worked with oracle 9i (9.0.2.1)
    After migration to oracle 10g (10.2.0.1.0) I get an ORA-22835 error (Buffer too small for CLOB to CHAR conversion.
    Here is the output for the 10g version:     
         SQL*Plus: Release 10.2.0.1.0 - Production on Mi Jun 13 16:19:28 2007
         Copyright (c) 1982, 2005, Oracle. All rights reserved.
         Verbunden mit:
         Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
         With the Partitioning, OLAP and Data Mining options
         SQL> CREATE TABLE test_conv (value CLOB);
         Tabelle wurde erstellt. (Table created.)
         SQL> DECLARE vLong LONG:= LPAD('M',4400,'M');
         2 BEGIN
         3 INSERT INTO test_conv(value) VALUES (vLong);
         4 END;
         5 /
         PL/SQL-Prozedur erfolgreich abgeschlossen. (PL/SQL procedure successfully completed.)
         SQL> SELECT dbms_utility.get_hash_value(value,1,power(2,30)) from test_conv;
         SELECT dbms_utility.get_hash_value(value,1,power(2,30)) from test_conv
         FEHLER in Zeile 1:
         ORA-22835: Puffer zu klein für Konvertierung von CLOB zu CHAR oder BLOB zu RAW
         (tatsächlich: 4400, maximal: 4000)
         (Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 4400, maximum: 4000))
    This is the result with     9i
         Verbunden mit:
         Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
         With the Partitioning, OLAP and Oracle Data Mining options
         JServer Release 9.2.0.1.0 - Production
         SQL> CREATE TABLE test_conv (value CLOB);
         Tabelle wurde angelegt.     (Table created.)
         SQL> DECLARE vLong LONG:= LPAD('M',4400,'M');
         2 BEGIN
         3 INSERT INTO test_conv(value) VALUES (vLong);
         4 END;
         5 /
         PL/SQL-Prozedur wurde erfolgreich abgeschlossen. (PL/SQL procedure successfully completed.)
         SQL> SELECT dbms_utility.get_hash_value(value,1,power(2,30)) from test_conv;
         DBMS_UTILITY.GET_HASH_VALUE(VALUE,1,POWER(2,30))
         478332438
    Any help is appreciated.
    Best Regards
    Matthias

    You have hit a bug, 3984527 - CLOB LARGER THAN 4000 INSERTED INTO VARCHAR2(4000) COLUMN IS.
    You may want to check this metalink note: Note:388512.1 for further explanation and workarouds.
    From the error message manual, Verbatim:
    ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: string, maximum: string)
    Cause: An attempt was made to convert CLOB to CHAR or BLOB to RAW, where the LOB size was bigger than the buffer limit for CHAR and RAW types. Note that widths are reported in characters if character length semantics are in effect for the column, otherwise widths are reported in bytes.
    Action: Do one of the following:
    1. Make the LOB smaller before performing the conversion, for example, by using SUBSTR on CLOB
    2. Use DBMS_LOB.SUBSTR to convert CLOB to CHAR or BLOB to RAW.
    ~ Madrid.

  • Internal compiler error while migrating from VS2012 to VS2013

    Hi,
    My existing application is running on VS2012. now we are migrating to VS2013. I am getting below compiler error.
    1>c1xxast : fatal error C1001: An internal error has occurred in the compiler.
    1>  (compiler file 'msc1ast.cpp', line 1325)
    1xxast : fatal error C1001: An internal error has occurred in the compiler.
      (compiler file 'msc1ast.cpp', line 1325)
       To work around this problem, try simplifying or changing the program near the locations listed above.
      Please choose the Technical Support command on the Visual C++
       Help menu, or open the Technical Support help file for more information
    Option that I have tried:
    1. Based on the below MSDN solution I have updated the VS2013 with update 2 still I am getting the same internal compiler error.
    "connect.microsoft.com/VisualStudio/feedback/details/806225/fatal-error-c1001-crash-when-running-code-analysis"
    2. I have disabled the "Code Analysis warning" in the project properties, then I have given clean and build. This time I didn't get the internal compiler error.
    Thanks
    Selvi P

    Hi Selvi P,
    Thanks for posting here.
    According to your description, it is indeed a known issue which has already been raised to
    connect. The error message is completely same with your issue. So I think you can confirm from that connect website if the VS2013 update 2 fix the problem.
    And also you can have a try to use VS2013 ultimate version to check if the issue is fixed. Because from this similar issue from connect:https://connect.microsoft.com/VisualStudio/feedback/details/800094/, 
    the resolution is that will be fixed in VS2013 RTM. If you still have this kind of issue in VS2013 ultimate, I suggest you raising your issue to connect. Because this kind of issue needs the product team to help.
    Thanks.
    May
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Compilation errors after upgrading from 8.1.6 to 10.2

    I recently upgraded a Weblogic Workshop application from version 8.1.6 to 10.2 using the Import wizard in Weblogic Workshop 10.2. However, I am getting the following compilation errors:
    Problem encountered finding XML Schema metadata for XML Bean
    com.ssmb.amps.workflow.projectionApproval.ProjectionApprovalDocument
    Does any one has any idea on it?
    Thanks,
    Albert

    Hi,
    Once upgraded from s.1 to 10.2, XML Schemes are converted to XMLBeans. So, during compiliation XMLSchemas are encountered. Try deleting XMLSchemas and compile. Hope it may help.
    Krishna

  • RowKeySet error after migrating to Jdeveloper 11.1.2

    We migrated our applications from Jdev 11.1.1.5 to 11.1.2. We encounter several issues. For some of them we found work around. Not for this one though.
    Consider a jsff page with a table. A commandLink inside a column has to call a popup.
    We get the error whenever we call a taskflow in an inline popup that contains a jsf page.The error does NOT occur if the popup is part of the page (showPopupBehavior).
    The error shows only in console and even it does not cause crash, it sounds dangerous.
    Code extracts:
    this is causing the error:
    <af:column sortProperty="BreakdownSupName" sortable="true" headerText="Name" id="c19">
    <af:commandImageLink text="#{row.BreakdownSupName}" id="cilEditBv" partialSubmit="true"
    action="editNonContractVendor" useWindow="true"
    windowEmbedStyle="inlineDocument" windowHeight="435" windowWidth="500"
    returnListener="#{backingBeanScope.vendorManagerBackingBean.editBreakdownVendorCommandImageLink_ReturnListener}">
    <af:setPropertyListener from="#{row.BreakdownSupId}" to="#{pageFlowScope.supId}"
    type="action"/>
    <af:setPropertyListener from="#{pageFlowScope.vendorManagerPageFlow.readOnly}"
    to="#{pageFlowScope.readOnly}" type="action"/>
    </af:commandImageLink>
    </af:column>
    this is Not causing the error:
    <af:column sortProperty="WoNumber" sortable="false" headerText="Reference" id="c1" width="80">
    <af:commandLink text="#{row.WoNumber}" id="cl2" partialSubmit="true"
    rendered="#{row.SupinvtypCode ne 'MISCINV'}">
    <af:showPopupBehavior popupId="::popupROEdit" triggerType="click"/>
    <af:clientAttribute name="completionDate" value="#{row.CompletionDate}"/>
    <af:clientAttribute name="wouniId" value="#{row.WouniId}"/>
    <af:clientAttribute name="worordId" value="#{row.WorordId}"/>
    <af:clientAttribute name="equEquId" value="#{row.EquEquId}"/>
    <af:clientAttribute name="repinvstaCode" value="#{row.RepinvstaCode}"/>
    </af:commandLink>
    </af:column>
    here is the error in the console:
    <RowKeySetAttributeChange$GetOldValueAndUpdate> <_updateKeySet> Failed to apply row key set attribute change. Reason : {1}
    java.lang.NullPointerException
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.<init>(JUCtrlHierNodeBinding.java:212)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierNodeBinding.<init>(FacesCtrlHierNodeBinding.java:71)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding.createNodeBinding(FacesCtrlHierBinding.java:104)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.createRootBinding(JUCtrlHierBinding.java:410)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.getRootNodeBinding(JUCtrlHierBinding.java:97)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$HierCurrencyRowKeySet.getRowIterator(FacesCtrlHierBinding.java:1421)
         at oracle.adfinternal.view.faces.model.binding.CurrencyRowKeySet._computeCurrentRowKey(CurrencyRowKeySet.java:125)
         at oracle.adfinternal.view.faces.model.binding.CurrencyRowKeySet.iterator(CurrencyRowKeySet.java:41)
         at java.util.AbstractCollection.addAll(AbstractCollection.java:303)
         at org.apache.myfaces.trinidad.change.RowKeySetAttributeChange$GetOldValueAndUpdate._updateKeySet(RowKeySetAttributeChange.java:136)
         at org.apache.myfaces.trinidad.change.RowKeySetAttributeChange$GetOldValueAndUpdate.invokeContextCallback(RowKeySetAttributeChange.java:117)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1170)
         at oracle.adf.view.rich.component.rich.data.RichTable.invokeOnComponent(RichTable.java:620)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:222)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:161)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1693)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:625)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:222)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:161)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
         at org.apache.myfaces.trinidad.component.UIXDocument.invokeOnComponent(UIXDocument.java:106)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1299)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:677)
         at org.apache.myfaces.trinidad.change.RowKeySetAttributeChange._updateRowKeySetInPlace(RowKeySetAttributeChange.java:86)
         at org.apache.myfaces.trinidad.change.RowKeySetAttributeChange.changeComponent(RowKeySetAttributeChange.java:53)
         at org.apache.myfaces.trinidad.change.SessionChangeManager._applyComponentChanges(SessionChangeManager.java:399)
         at org.apache.myfaces.trinidad.change.SessionChangeManager.applyComponentChangesForCurrentView(SessionChangeManager.java:73)
         at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.buildView(ViewDeclarationLanguageFactoryImpl.java:343)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:982)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:334)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:232)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:313)
         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:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         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)
    I appreciate any input on this issue.
    Thank you,
    Monica

    After more investigations I have more details:
    1. the error does not occur if the base table does not have rowSelection=”single”
    2. the error does not occur if the base table has rowSelection=”single” but the popup is raised with showPopupBehavior
    3. the error only occurs when the base table has rowSelection=”single” and we call the popup as inline popup (taskFlow with jsf page)
    I could not reproduce the error on a newly created application in Jdevelope 11.1.2.1, it only happens to migrated applications.
    We can not give up to rowSelection=”single” because of master-detail structures.
    Thank you,
    Monica

  • IMessage error after migrating from old hard drive

    After I used migration assistant to transfer my user account from my old hard drive to my new one, every time I try to use iMessage, I get this error
    Does anyone know how I can fix this?

    Hi,
    With that messages there is no other option than doing what it says.
    At the beginning of Mountain Lion it was Free, but now people are reporting that Apple are charging for the phone call.
    9:50 pm      Tuesday; February 18, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Login error after migration from Snow Leopard to Lion

    I went through the migration process to get all settings and data over from my MacBook (10.6.8) to my new Mac Pro (10.7.3). During the migration, I was logged into the old MacBook with my FileVault-enabled account. Migration completed successfully, but when I tried to log into the new Mac Pro, I got this error:
    "You are unable to log in to the FileVault user account "user1" at this time. Log in to the account failed because an error occurred." [OK]
    When I typed a password I knew was incorrect, the login box would do the familiar shaking. When I typed the correct password, I got the behavior above.
    I was able to log in to the new Mac Pro as a different user (user2), even though user2 also had FileVault enabled on the old system.
    When logged in as user2 on the new system, I was able to escalate privileges by authenticating as user1, so I knew the password for user1 was working. I gave user2 admin privileges and saw that user1's data had been copied over, but not as a sparsebundle - presumably because user1 was logged in at the time of migration.
    To fix the login problem, I did the following:
    1) Logged in as user2 on both source and target system, then escalated privs to give  user2 admin rights.
    2) Copied /Users/user1/user1.sparsebundle from source to target system:
         - On target system, in System Preferences -> Sharing, enabled Remote Login for user2
         - On source system, opened Terminal window and typed:
         $ sudo -s
         > [password for user2]
         # cd /Users/user1
         # scp -rp user1.sparsebundle user2@IP_address:
        (where IP address is the actual IP address of the target system)
         > [password for user2]
    3) Moved aside the unencrypted files in user2's home directory:
         - On target system, logged in as user2, in Terminal:
         $ sudo -s
         > [password for user2]
         # chown -R user1 ~/user1.sparsebundle
         # mkdir /tmp/user1
         # chown user1 /tmp/user1
         # cd /Users/user1
         # mv * /tmp/user1
         # mv .[a-zA-Z]* /tmp/user1
    4) Moved the user1.sparsebundle into place (in same Terminal window on target system):
         # chown -R user1 ~/user1.sparsebundle
         # mv ~/user1.sparsebundle /Users/user1
    5) Logged out of user2 account and logged back in as user1
    6) Securely deleted the unencrypted files for user1 (in Terminal window as user1):
         $ srm -rf /tmp/user1
    Many thanks to @neirbowj for the analysis of why the migration failed!

    Go get a powered USB hub and try that. Lion may have issued a fix for devices drawing too much power, by cutting them off.

  • Web Dynpro error after migration from 7.00 to 7.40

    Hi all!
    I have migrated a Web Dynpro for Java application from SAP Netweaver 7.00 to 7.40. Everything worked pretty good except some dependencies. These were fixed now but now we have an error when using the web gui.
    We have a reproducable error always at the same location in the application. The error message hints to a view (name = HeaderView) and there at an image object (ID = LEAHeaderImageCenter). I already tried to rename the image object but no success
    Some technical information:
    - Server: SAP NW 7.40 SP08 (Java only), SAP JVM, Linux SLES 11, Oracle DB
    - Browser: Chrome (39xxx), IE 8, FF 33 (alway the same error ...)
    Here is the stacktrace:
    java.lang.IllegalStateException: IDs for initialization not empty: [NCEF.HeaderView.LEAHeaderImageCenter]
      at com.sap.tc.webdynpro.clientserver.uielements.lsmgr.RenderManager.setWriter(RenderManager.java:470)
      at com.sap.tc.webdynpro.clientimpl.ajax.AjaxClient.getRenderManager(AjaxClient.java:1101)
      at com.sap.tc.webdynpro.clientimpl.ajax.AjaxClient.sendResponse(AjaxClient.java:1386)
      at com.sap.tc.webdynpro.clientimpl.ajax.AjaxClient.sendResponse(AjaxClient.java:382)
      at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.renderResponse(AbstractClient.java:144)
      at com.sap.tc.webdynpro.clientserver.phases.RenderPhase.execute(RenderPhase.java:45)
      at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRenderResponse(WindowPhaseModel.java:182)
      at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRenderResponse(WebDynproWindow.java:552)
      at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.renderTasks(AbstractClient.java:133)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doRendering(ClientApplication.java:1648)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1491)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingStandalone(ApplicationSession.java:908)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessing(ApplicationSession.java:880)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:357)
      at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:326)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
      at com.sap.tc.webdynpro.serverimpl.wdc.DispatcherServlet.doContent(DispatcherServlet.java:101)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doPost(AbstractDispatcherServlet.java:62)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:152)
      at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:373)
      at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:499)
      at com.sap.tc.webdynpro.serverimpl.wdc.ForwardServlet.doPost(ForwardServlet.java:77)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:152)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:38)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:466)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)
      at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:278)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)
      at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)
      at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
      at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
      at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
      at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Any ideas how to fix the problem?
    Thanks in advance!
    Richard

    You can delete Image object and create new one try again.Or check the view any binding values and mapping may be missing in the node and View.

  • TS1963 DMS Launch error after migration from snow leopard iMac to new Macbook Pro?

    I just purchased a Macbook Pro. I used Migration assistant to transfer my files from my '06 iMac, which was running snow leopard to the Macbook and at start up now get a DMS Launch error every time... any suggestions??
    The error message says check with the developer to make sure DMS Launch works on this version of OS X.  You may need to reinstall the application.
    I have installed all updates as it suggests, to no avail.  I keep getting the error message and report pop up box each time at start up and the only way to be rid of it, is to click ok to send the report - there is no option to stop the report from coming up.
    Does anyone have any suggestions on what I can do to stop the error message appearing and resolve the issue?
    Thanks
    Chelle

    Click Command+shift+G
    Type in the following, one by one- Then delete the **** out of them.
    /Library/LaunchAgents/com.divx.update.agent.plist
    /Library/LaunchAgents/com.divx.dms.agent.plist
      /Library/LaunchAgents/com.divx.update.agent.plist
      /Library/LaunchAgents/com.divx.dms.agent.plist
      /Library/Application\ Support/DivX/
      HOME/Library/Preferences/com.divx.*
    Also search anything "DIVX" while in library. Delete the **** out of that too.

  • Printing to a pdf error after migrating from Acrobat 7 to Acrobat X Professional

    Printing to a pdf seems be broken in Acrobat X on my XP machine.
    I have just upgraded from Acrobat 7 professional to Acrobat X professional.
    With Acrobat 7, printing to a pdf file from within a program (MsWord, Visio etc) was a breeze. Now, with Acrobat X on the same machine, the print spooler always reports 'this document failed to print' even though the pdf is created correctly. I am then forced to cancel the pint job within the spooler itself.
    Any help gratefully received.
    Andrew Waterhouse

    Sorry, but this is the Reader forum . The Acrobat Windows one is here:
    http://forums.adobe.com/community/acrobat/acrobat_windows

  • NQS ERROR:14025 NO FACT TABLE EXISTS -after migrating from 10g to 11g

    NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL in all the reports after migrating from 10g to 11g ...
    then we applied the patch (One-off Patch for Bug: 11850704) for the error <<NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL>>
    But after applying the above the above patch we are still getting the same error.
    but in the above patch instructions file - Post deployment instructions to create the Variable
    Post Install Instructions:
    - To revert to the 10g navigator behavior for handling conforming dimensions,
    you must set the following session variable via an init block in the RPD:
    NO_FORCE_TO_DETAIL_BIN=1
    The default value for the above variable is 0.
    - Restart all servers (Admin Server and all Managed Server(s))
    but we didn’t find the process to create the specified variable and Initialization block in the RPD
    Can you please suggest us how to go further.
    Our questions are:

    Hi
    Refer the below thread.
    obiee 11g non-conforming dimensions and nQSError 14025
    Might be help you/
    Thanks,
    satya

  • Error in deploy, after migration from jdev 11.1.1.3 to jdev 11.1.2.0

    Hi,
    I am using Jdev 11.1.2.0.
    migration successfully at 11.1.1.3 to jdeveloper 11.1.2.0.
    when I deploy the new version Viewcontroller project I got the error like "An unreported error occurred in Appc. No errors were reported, but the tool returned a failure result code: 1." .
    Regards,
    Ragu.

    same discussed here as well.. have you tried the suggestions provided here
    Re: Migrate from JDeveloper 11.1.1.3 to 11.1.2

  • Multi Value error observed in one report after migration from BO 3.1 to BO 4.0

    Hi,
    Can someone help me resolving the #multivalue error after migration of report from BO 3.1 to 4.0 environment
    I have compared all the formulas and they are same in both the
    I have observed, if I create a new  tab with the report, The multivalue error is not observed
    Can somebody please help me regarding this issue
    Thanks
    Javeed

    Hi Javed,
    MultiValue error appears if you have multiple result values for the same row values combination.
    Try including an object from object panel which can differentiate the values for that row.
    For Example,
    Lets say you have an item & you have a keyfigure Invoiced amount where it has 2 different values at schedule line level.
    So the values in webi BOBJ depends your BW architecture like how the infoprovider is designed. If your infoprovider has the invoiced amount values based on item and schedule line level then if you dont add the schedule line in webi report, you ll get the "#MULTIVALUE" Error.
    If you are using any Variables in the webi Report, try using
    =[keyfigure] in [Dimension]
    Hope this helps.
    Regards,
    Naveen

Maybe you are looking for

  • How can I give back an iphone found in Spain?

    On september I found an Iphone 4, with an Orange Sim card into the water at Cala Macarrella, Menorca. I did call Orange Spain, I sent an email to Orange Uk with the phone data and my contacts in order to give back the iphone to the owner but I did no

  • File to Web service (SOAP) to File scenario with out BPM in PI 7.1

    Hi All, I have scenario File to Web service (SOAP) to File scenario with out BPM.i am getting the below error: 1) Error MP: unexpected exception caught com.sap.aii.af.service.cpa.impl.exception.CPAObjectKeyException: Value of key must not be null: Ob

  • Why can't i put videos on my Ipod video?

    i put it into itunes and then plug in my ipod. My ipod says "updating" and everything but the video doesn't appear on my ipod, only in the itunes library. What am i doing wrong. btw im on a pc with a 30GB ipod (not like THAT means anything) can anyon

  • How do I set up an account for my child with no bank details

    Can anyone tell me how to set up an account for my daughter so she doesn't have access to my bank account?

  • Apps won't sycn on iTunes 11

    Hello, I have installed iTunes 11 on my PC and I try to use it. When I use iTunes 11 for sync some songs, videos, and books, it works well. But when I try to sync apps (update and install), there's a problem. It should will show step 1 of 6 untill fi