Problem facing while upgrading from apex 3.0 3.2.1

iam using 11g database . I have apex 3.0 now i try upgrading to 3.2.1
I did following steps
1)I Downloaded from otn apex 3.2.1 zip file
2) unzipped file
3)i have connected sqlplus where i unzipped apex 3..2.1
sql>@apexins.sql SYSAUX SYSAUX TEMP /i/
then it showing error
.....Checking prerequesities.
PL/SQl procedure successfully Completed
No rows selected
Application Express Installation requires the oracle text database Componenet
begin
ERROR at line 1:
ORA-00900: invalid SQL statement
ORA- 06512 at line 4
then Diconnected from oracle
Please tell me solution ASAP
Thanks in advance
Sudhakar.K

Oracle Text is a required component for APEX installation. See document at http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/pre_require.htm#insertedID6
Please check with DBA to install it.
SYSTEM @DB1> select comp_name, status from dba_registry where comp_name like 'Oracle Text';
COMP_NAME STATUS
======== =====
Oracle Text VALID
Edited by: ittichai on Apr 25, 2010 10:19 PM

Similar Messages

  • Error while upgrading from APEX 3.0 to 3.1

    Hi,
    I was upgrading from 3.0 to 3.1 and it was going great but then it bombed out on Page 4736.
    Error page=4736 item="F4000_P4736_P" id="881158261"
              declare
              ERROR at line 1:
              ORA-06502: PL/SQL: numeric or value error
              ORA-06512: at "SYS.OWA_UTIL", line 354
              ORA-06512: at "SYS.HTP", line 7
              ORA-06512: at "FLOWS_030100.WWV_FLOW_API", line 4098
              ORA-01654: unable to extend index FLOWS_030100.WWV_FLOW_STEP_ITEM_HELP_IDX by 8
              in tablespace SYSTEM
              ORA-06512: at line 7
    Is this a known bug?

    No more room in the system tablespace, all database users (execpt sys and system) should be set to use a tablespace that isn't system or sysaux.
    XE is supposed to set default to USERS, if there's been quite a few table drops the cleaning up recyclebin could help, tt can be managed in the web GUI under utilities. Connect as system to see all deleted objects in the database, and also check that all the database users are set to default to the USERS tablespace not system ...
    select username, default_tablespace from dba_users -

  • Challenges while Upgrading from OBIEE 10g to 11g

    Hi Gurus,
    This is Kiran again. This time I am back with the upgradation issues. We have a client which is currently on OBIEE 10g. All components are already configured in OBIEE 10g with client on RPD, Catalog and implemented all security levels for those.
    Now the challenge is to upgrade all activities which we have configured in OBIEE 10g. I have seen lot of stuff online and understood how to upgrade from OBIEE 10g to OBIEE 11g by simply clicking on ua.bat file. But I am unable to understand the process how it is upgrading the securities and environments.
    Can anyone help me out by providing necessary stuff I need to take care of before taking the decision to upgrade from OBIEE 10g to 11g.
    And also please clear me whether we will have any challenges in upgrading process. If yes, then what kind of challenges we will face and what kind of necessary steps we need to implement to resolve it.
    What kind of Architecture we need to follow?
    How Schedulers will get upgraded?
    Please help me out with your real experiences (Not the online websites). Your response will be highly appreciated and it will help lot of OBIEE professionals who are in the process of upgradation.
    Thanks in Advance to all OBIEE GURUS.
    Kiran

    Hi Valli,
    There is really great information available in this link. But I would like to know whether any one faced any issues while upgrading from OBIEE 10g to 11g. Please do share us few issues....
    Edited by: 949144 on Nov 27, 2012 9:44 AM

  • Upgraded from APEX 3.1 to APEX 4.0.2, Interactive reports broken

    I just recently upgraded from APEX 3.1 to APEX 4.0.2.
    Am using IE 8.
    Now whenever I click on a column header in an interactive reports I get a javascript error:
    Message: Expected ')'
    Line: 1
    Char: 40984
    Code: 0
    URI: http://patchx:8080/i/javascript/apex_4_0.js
    Am at my wits end on this one.
    I can't see anybody else who has hit this error.
    The demo application works okay.
    I set up an interactive report with the same properties as the demo app, but i still get the error.
    Any clues?

    AHA, I just figured out what is making this happen.
    I have a custom authorization scheme which calls a PLSQL function.
    I had set the authorization scheme to "Once Per Page View".
    This was causing the error to happen, although I still don't know why.
    Unfortunately it is a problem because I need to authorize on each page.
    This is because my plsql function must allow the login page authorization so we can capture the username to check against permissions. So I autmatically return true on the login page. But that means anybody can get in, because that is the once per session authorization as specified.

  • Unicode error while upgrading from 4.6 to ECC 6.0

    Dear All,
    I am getting unicode errror while upgrading from 4.6 to ECC 6.0, when iam trying to open downloaded file in excel.
    In debugging, error occurs while executing statment "CALL METHOD OF obj_ex_sheet " in the code given below:
    FORM open_downloaded_file_in_excel            *
    FORM open_downloaded_file_in_excel.
      DATA:
        lv_ole_books       TYPE ole2_object,
        lv_ole_sheets      TYPE ole2_object,
        lv_subrc           LIKE sy-subrc,
        lv_title(70)       TYPE c,
        lv_text1(70)       TYPE c,
        lv_text2(70)       TYPE c.
    start excel
      CREATE OBJECT obj_ex_sheet      'EXCEL.SHEET'.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      CALL METHOD OF obj_ex_sheet     'Application' = obj_ex_app.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_app.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      SET PROPERTY OF obj_ex_app 'Visible' = 1.
    open data file: main file
      CALL METHOD OF obj_ex_app        'Workbooks'  = lv_ole_books.
      CALL METHOD OF lv_ole_books      'Open'       = obj_ex_wbook
        EXPORTING #1  = gv_filename
                  #2  = 2
                  #3  = 0
                  #4  = 1
                  #5  = 0
                  #6  = 0
                  #7  = 1.
      IF sy-subrc NE 0.
        lv_subrc = sy-subrc.
        FREE OBJECT obj_ex_wbook.
        FREE OBJECT obj_ex_app.
        FREE OBJECT obj_ex_sheet.
        PERFORM error_handling_ms_excel USING lv_subrc.
      ENDIF.
      FREE OBJECT lv_ole_books.
      CALL METHOD OF obj_ex_wbook      'Worksheets' = lv_ole_sheets.
      CALL METHOD OF lv_ole_sheets     'Item'       = obj_ex_wsheet
        EXPORTING #1 = 1.
      FREE OBJECT lv_ole_sheets.
      GET PROPERTY OF obj_ex_wsheet    'UsedRange'  = obj_ex_usedrange.
      CALL METHOD  OF obj_ex_usedrange 'AutoFormat'
        EXPORTING #1 = 18.
      SET PROPERTY OF obj_ex_wsheet    'Name'       = sy-tcode.
      FREE OBJECT obj_ex_usedrange.
      PERFORM free_ole_objects.
      CALL FUNCTION 'FLUSH'
           EXCEPTIONS
                OTHERS = 0.
    ENDFORM.                              
    regards,
    Divya

    hi,
    In the OPEN DATASET STATEMENT ADD THE ENCODING ADDITION IN TEXT MODE.
    Regards,
    Balakumar.G
    Reward Points if helpful.

  • Error while upgrading from 4.0 to 4.1

    Hello,
    I tried to upgrade from APEX 4.0.0.00.46 to APEX 4.1.
    It seems the installation went okay, but that the migration of the old applications to the new version went wrong. This is what I got:
    PL/SQL procedure successfully completed.
    -- Now beginning upgrade. This will take several minutes.-------
    -- Ensuring template names are unique -------
    -- Migrating metadata to new schema -------
    begin
    ERROR at line 1:
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: in "SYS.DBMS_STATS", regel 14837
    ORA-06512: in "SYS.DBMS_STATS", regel 15183
    ORA-06512: in "SYS.DBMS_STATS", regel 15261
    ORA-06512: in "SYS.DBMS_STATS", regel 15220
    ORA-06512: in "APEX_040100.WWV_FLOW_UPGRADE", regel 1731
    ORA-06512: in regel 4What I did was the following:
    I ran 'cmd' and navigated to the folder where I unpacked the installation files.
    Started SQL Plus and connected with SYS as SYSDBA.
    Ran @apexins SYSAUX SYSAUX TEMP /i/
    I can login to Oracle Application Express and it shows the new design and version number (4.1.0.00.32), but when I click Application Builder it shows me this error:
    Error during rendering of region "Applications".
    ORA-01400: cannot insert NULL into ("APEX_040100"."WWV_FLOW_WORKSHEET_RPTS"."ID")I tried to search on google and on this forum, but I couldn't find much help. So I hope someone here can help me or point me in the right direction.
    Kind regards, and thanks in advance,
    Sebastiaan
    PS. I'm a developer not a DBA, so I might miss something basic.

    Hi Sebastiaan,
    which database version are you using?
    Anyway I would suggest that you get in contact with your DBA and he with Oracle Support.
    Based on the bug description this error has something to do with your database and DBMS_STATS (used to calculate statistics for your data) and not really with APEX itself.
    Oracle Support should be able to help you to find out which database patch you have to install.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • What are the key points to beconsider while upgrading from 4.7 to ECC 6.0

    hai
    What are the key points to beconsider while upgrading from 4.7 to ECC 6.0
    please provide sufficient material
    points will be rewarded
    regards
    v.sridhar

    Hi Sridhar,
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional perspective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, and QM.....
    Click on Search
    then it displays the Release Version and the Delta Functionality. Which can be downloaded to a word document if required.
    And also check the release notes of ECC 6.0 in service.sap.com.
    When you are upgrading from 4.6C to ECC6
    Nothing major, follow the same process you'd follow if you were updating PI service packs in R/3 or enhancing data sources. Empty queues in RSA7 and lbwq. Also empty setup tables through lbwg as the upgrade doesn't like it if these tables contain data. This is all on the R/3 side (although you empty RSA7 by running each delta TWICE in BW).
    To transfer queues from lbwq to rsa7, execute jobs through LO cockpit (lbwe).
    Some of your data sources could also be using sm13 instead of lbwq, so do check it out as well.
    For installing ECC 6.0 you required a solution manager key. With out solution manager key you cannot install ECC6.0.
    For ECC 6.0 is called net weaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't require solution manager key. It only having ABAP stack.
    4.6C supports NONUNICODE.
    Major difference is ECC6 is netwear product having WASJAVA+ABAP
    secondly support unicode apart from this we have other diff. you can get form master guide from service.sap.com/instguides.
    Please go through the link that is shown here and if there is any doubts then feel free to ask.
    Major difference is ECC6 is net weaver  product having WASJAVA+ABAP
    secondly support Unicode apart from this we have other diff. you can get from master guide from service.sap.com/instguides
    For installing ECC 6.0 you required a solution manager key. With out solution manager key you cannot install ECC6.0.
    For ECC 6.0 is called net weaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't required solution manager key. It only having ABAP stack.
    4.6C supports NONUNICODE.
    Please also Refer sdn thread and make a small search where u can find lot of information Reg this
    olution Browser would give the differences (Features):
    http://solutionbrowser.erp.sap.fmpmedia.com/ Give source and target versions.
    Release Info:
    ECC 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    Refer below and search for posts on this topic on sdn
    There are so many differences between the version in different objects
    I
    These are the some of the settings that are differed in the two versions and in that two objects
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Upgrade from 4.6c to 6.0 ECC
    upgrade from 4.7 to ecc 6.0
    Please Do Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • BAdi & user-exits while upgrade from 4.6c to ECC6

    Hello all,
    Can anybody put light on how User-exits and BAdi will be effected while upgrade from lower version to ECC6.
    Many Thnanks.....
    Apps.

    Hi,
    The main concept of enhancements is to keep the code unaffected during version upgrades
    Hence all the BADI implementations and User Exit/Customer exits implementations will be in place and no effect due to upgrade...I hope in case of badi, some new BADI(as part of enhancement framework-GET BADI/CALL BADI) will be added up and the old BADI(Those in 4.6c or below) will not get affected.
    Regards
    Shiva

  • OUI-10091 error, while upgrading from 10.2.0.1 to 10.2.0.2

    Hi,
    While upgrading from from 10.2.0.1 to 10.2.0.2, im prompted with OUI-10091 error,
    i tried to find out in google...but couldn't(incomplete answers)
    Help me on how to proceed and install the ptach.
    Regards,
    - Sri

    I guess troubled u lot.. but this what the README says:
    Note:
    If you attempt to install this patch set in an Oracle home directory that does not contain an Oracle Database 10g release 10.2.0.1 or 10.2.0.2 installation, Oracle Universal Installer displays a warning dialog with the following error:
    OUI-10091: There are no patches that need to be applied from the patch set Oracle Database 10g Release 2 Patch Set 2
    10.2.0.3
    The Oracle Universal Installer does not allow the installation to proceed. Click OK, then click Cancel to end the installation.
    Log on as a member of the Administrators group to the computer on which you are going to install Oracle components. If you are installing on a Primary Domain Controller or a Backup Domain Controller, log on as a member of the Domain Administrators group.
    Start Oracle Universal Installer located in the unzipped area of the patch set. For example, Oracle_patch\setup.exe.
    On the Welcome screen, click Next.
    In the Specify Home Details Screen, select the name of the Oracle home that you want to update, or select the Path that you want to update from the list, then click Next
    If you are installing the patch set on an Oracle RAC cluster, click Next when the Selected Nodes screen appears.
    Regards,
    - Sri

  • Upgrading from APEX v3 to 4 issues

    Hi,
    I am trying to upgrade from APEX version 3 to v4, and we have the following issues:
    * The buttons are not working (doesn't do anything when pressed)
    * The show edit links are automatically displayed, and the edit link arrows are outlined in blue.
    * The values are not being saves on the session.
    I exported the application and imported into the oracle development forum and everything work fine.
    We get the following error when using IE;
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)
    Timestamp: Tue, 1 Feb 2011 22:50:26 UTC
    Message: 'apex' is undefined
    Line: 73
    Char: 1
    Code: 0
    URI: http://pcaapex01.pca.ad:7777/pls/apexdev/f?p=101:2:798892704964590::YES
    Any help will be appreciated.
    Thanks.

    Hi alberto,
    i suppose that your application file prefix is incorrect for your application. Can you please verify that the directory specified in "Image Prefix" at Application Builder > Edit Application Properties is correct. You can test that with
    http://yourdomain:yourport/<value specified in image prefix>/apex_version.txt
    for example
    http://apex.oracle.com/i/apex_version.txt
    The application file prefix should be set to the same value you have entered during the installation of APEX 4.0?
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Hello guys i face a problem when i upgrade from iOS 4.2.1 to iOS 5.1.1  .when i upgrade i don' t found the camera app from the built in apps.when i try to install from the app store i don't  found the correct camera app .please help me .

    hello guys i face a problem when i upgrade from iOS 4.2.1 to iOS 5.1.1 on ipad 3 .when i upgrade i don' t found the camera app from the built in apps.when i try to install from the app store i don't  found the correct camera app .please help me .please give any suitable link where i find the correct camera app

    It's a built-in app, so it can't be deleted nor downloaded from the store. If you can't find it on any of your homescreens or app folders, and you can't find it via the spotlight search screen (swipe your first home screen to the right), then is it hidden by Settings > General > Restrictions > Camera being set 'off' ?
    If not then have you tried a reset to see if you can find it after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Upgrade from APEX 3.0.0 to 3.1.0 causes problems with applications

    Hello everyone,
    We have recently upgraded our dev environment from APEX 3.0.0 to 3.1.0. The upgrade went through sucessfully, but the applications that were developed in 3.0.0 are not functioning in this upgraded dev environment. When I run the pages, it loads it with show edit links enabled, buttons dont function (postback) and the page shows an error of object expected. What seems to be the issue? What would alleviate it?
    Any help is greatly appretiated :D
    Regards,
    Luis

    Thank you for your quick reply.
    It pointed us in the right direction. I ran Fiddler debugger on the problematic webpage and confirmed that the applications from 3.0 are looking for the new javascript libraries but in the old images directory
    +/i/javascript/apex_ns_3_1.js+
    +404 Not Found+
    +/i/javascript/apex_3_1.js+
    +404 Not Found+
    +/i/javascript/apex_get_3_1.js+
    +404 Not Found+
    +/i/javascript/apex_builder.js+
    +404 Not Found+
    +/i/css/apex_3_1.css+
    +404 Not Found+
    +/i/css/apex_ie_3_1.css+
    +404 Not Found+
    I noticed the pages that were working in the new environment found these files in the /i31/ folder.
    I will have the DBA's attempt to copy the files from /i31/ into the /i/ directory and let you know if it works out. B-)
    Edited by: mrcatinthehat on Feb 26, 2009 7:36 AM

  • Problem While Upgrading from ECC 5.0 to ECC 6.0

    Hi Experts,
    I am doing project on upgrading.
    there is one program in ECC 5.0, and it is working fine in ECC 5.0
    But while upgrading to ECC 6.0 it is giving syntax error.
    below I am sending the code.
    BEGIN OF lty_s_ekab_key,                             "1001282
             konnr TYPE ekab-konnr,
             ktpnr TYPE ekab-ktpnr,
             ebeln TYPE ekab-ebeln,
             ebelp TYPE ekab-ebelp,
           END OF lty_s_ekab_key.
    CLASS lcl_entity_ekab DEFINITION INHERITING FROM lcl_entity_any.
      PUBLIC SECTION.
        METHODS: constructor,
                 if_any_table_mm~read_line  REDEFINITION,
                 if_any_table_mm~read_lines REDEFINITION.
      PRIVATE SECTION.
        METHODS prefetch
                   IMPORTING im_key               TYPE lty_s_ekab_key
                   RETURNING value(re_t_ekab)     TYPE lty_t_sorted_ekab.
    ENDCLASS.      
    after  checking the systax error , i and getting error like lty_s_ekab_key is unknow.
    Plz help me to solve in this issue.
    Thanks and Regards
    Ganesh Reddy

    Hi
    In my ECC 6 the defination is like yours:
    CLASS lcl_entity_ekab DEFINITION INHERITING FROM lcl_entity_any.
      PUBLIC SECTION.
        METHODS: constructor,
                 if_any_table_mm~read_line  REDEFINITION,
                 if_any_table_mm~read_lines REDEFINITION.
      PRIVATE SECTION.
        METHODS prefetch
                   IMPORTING im_key               TYPE lty_s_ekab_key
                   RETURNING value(re_t_ekab)     TYPE lty_t_sorted_ekab.
    ENDCLASS.                    "lcl_entity_ekab DEFINITION
    So try to re-generate the navigation index
    Max

  • Problems of Port Configuration while upgrading from 4.0B to ERP 6

    Hi all,
        We are upgrading a system from 4.0B to ERP 6. Will there will be any problems from port configuration side? If any please tell what they might be.
    thankyou.

    Hello,
    We have upgraded from 4.6C to ECC6.0 and did not have any port config issues.
    Things to look for:
      - RFC destinations, do they still work
      - directories used in File type ports, are they still there (they should be)
    Hope this helps a bit
    Regards
    Greg Kern

  • Deployment error while upgrading from WLS6.1 to WLS9.1

    We are upgrading from Weblogic 6.1 to Weblogic 9.1.
    We are facing with two issues while upgrading.
    1. We are having a start up servlet and that servlet uses Database appender and uses log4j. This class is inside a jar file and this jar is part of the ear file.
    The admin server starts but with the following error.
    log4j:ERROR Could not create an Appender. Reported error follows.
    java.lang.ClassNotFoundException: com.tuiuk.greenfield.foundation.logging.log4j.Dat
    abaseAppender
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericCla
    ssLoader.java:222)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoa
    der.java:195)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoa
    der.java:130)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at org.apache.log4j.helpers.Loader.loadClass(Loader.java:160)
    at org.apache.log4j.xml.DOMConfigurator.parseAppender(DOMConfigurator.java:
    164)
    at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.
    java:140)
    at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigur
    ator.java:153)
    at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMCon
    figurator.java:415)
    at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:384)
    at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:783)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:66
    6)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:61
    6)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:60
    2)
    at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConver
    ter.java:460)
    at org.apache.log4j.LogManager.<clinit>(LogManager.java:113)
    at org.apache.log4j.Category.getInstance(Category.java:514)
    at org.apache.commons.logging.impl.Log4JCategoryLog.<init>(Log4JCategoryLog
    .java:104)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorA
    ccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingCons
    tructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImp
    l.java:525)
    at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImp
    l.java:272)
    at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImp
    l.java:246)
    at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:395)
    at com.bea.console.preferences.spi.FilePreferencesProvider.<clinit>(FilePre
    ferencesProvider.java:53)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.bea.portlet.prefs.spi.ProviderFactory.createInstance(ProviderFactory
    .java:78)
    at com.bea.portlet.prefs.spi.ProviderFactory.setDefaultProviderClass(Provid
    erFactory.java:47)
    at com.bea.portlet.prefs.spi.IPreferenceStore$Factory.registerDefaultProvid
    er(IPreferenceStore.java:128)
    at com.bea.netuix.servlets.manager.SingleFileServlet.init(SingleFileServlet
    .java:113)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:94)
    at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebA
    ppServletContext.java:1641)
    at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManage
    rImpl.java:518)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    log4j:ERROR Could not parse input source [org.xml.sax.InputSource@5d8e63].
    java.lang.NullPointerException
    at java.util.Hashtable.put(Hashtable.java:396)
    at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.
    java:141)
    at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigur
    ator.java:153)
    at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMCon
    figurator.java:415)
    at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:384)
    at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:783)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:66
    6)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:61
    6)
    at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:60
    2)
    at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConver
    ter.java:460)
    at org.apache.log4j.LogManager.<clinit>(LogManager.java:113)
    at org.apache.log4j.Category.getInstance(Category.java:514)
    at org.apache.commons.logging.impl.Log4JCategoryLog.<init>(Log4JCategoryLog
    2. The second error is
    The managed server starts without any problem. Using the appication, we connect to 3rd party library to validate payment details. This 3rd party jar is also part of the ear file.
    Basically the ear contains all the ejb jars, 3rd party jars and war files.
    In this case we are getting the following error.
    com.tuiuk.greenfield.template.navigation.web.handler.GreenfieldExceptionHandler
    com.tuiuk.greenfield.foundation.exception.GreenfieldRuntimeException: Locating the PaymentManager Nested exception is:
         java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.NoClassDefFoundError: com/datacash/logging/LogListener
    com.tuiuk.greenfield.foundation.exception.GreenfieldRuntimeException: Locating the PaymentManager Nested exception is:
         java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.NoClassDefFoundError: com/datacash/logging/LogListener
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.NoClassDefFoundError: com/datacash/logging/LogListener
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:95)
         at weblogic.ejb.container.internal.BaseEJBObject.handleSystemException(BaseEJBObject.java:713)
         at weblogic.ejb.container.internal.BaseEJBObject.handleSystemException(BaseEJBObject.java:681)
         at weblogic.ejb.container.internal.BaseEJBObject.postInvoke1(BaseEJBObject.java:447)
         at weblogic.ejb.container.internal.StatelessEJBObject.postInvoke1(StatelessEJBObject.java:72)
         at weblogic.ejb.container.internal.BaseEJBObject.postInvokeTxRetry(BaseEJBObject.java:374)
         at com.tuiuk.greenfield.service.payment.datacash.ejb.PaymentServiceEJB_hlf8l4_EOImpl.getCardType(PaymentServiceEJB_hlf8l4_EOImpl.java:288)
         at com.tuiuk.greenfield.template.orchestration.book.PaymentImpl.getCardType(PaymentImpl.java:190)
         at com.tuiuk.greenfield.template.orchestration.book.BookOrchestratorImpl.getCardType(BookOrchestratorImpl.java:2044)
         at com.tuiuk.greenfield.template.navigation.web.action.book.CheckPaymentCardAction.executeAction(CheckPaymentCardAction.java:109)
         at com.tuiuk.greenfield.template.extension.navigation.struts.action.BaseAction.execute(BaseAction.java:202)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at com.tuiuk.greenfield.template.navigation.web.processor.book.BeachBookRequestProcessor.processActionPerform(BeachBookRequestProcessor.java:81)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at com.tuiuk.greenfield.brand.th.navigation.action.THUserInterfaceFactory.doPost(THUserInterfaceFactory.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:493)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:245)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at com.tuiuk.greenfield.brand.th.navigation.action.THUserInterfaceFactory.doPost(THUserInterfaceFactory.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:493)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:245)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at com.tuiuk.greenfield.brand.th.navigation.action.THUserInterfaceFactory.doPost(THUserInterfaceFactory.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:493)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:245)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at com.tuiuk.greenfield.brand.th.navigation.action.THUserInterfaceFactory.doPost(THUserInterfaceFactory.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3150)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    Caused by: java.lang.NoClassDefFoundError: com/datacash/logging/LogListener
         at com.tuiuk.greenfield.service.payment.datacash.ejb.PaymentManagerEJB.getPreAuthorisationFacade(PaymentManagerEJB.java:255)
         at com.tuiuk.greenfield.service.payment.datacash.ejb.PaymentManagerEJB.getCardType(PaymentManagerEJB.java:158)
         at com.tuiuk.greenfield.service.payment.datacash.ejb.PaymentServiceEJB_hlf8l4_EOImpl.getCardType(PaymentServiceEJB_hlf8l4_EOImpl.java:274)
         ... 66 more
    I have added explicitly this 3rd party jar in to the manifest file of the ejb jar that is looking for this jar.
    Can you please throw some light in to this.

    Hi Sebastiaan,
    which database version are you using?
    Anyway I would suggest that you get in contact with your DBA and he with Oracle Support.
    Based on the bug description this error has something to do with your database and DBMS_STATS (used to calculate statistics for your data) and not really with APEX itself.
    Oracle Support should be able to help you to find out which database patch you have to install.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

Maybe you are looking for

  • Error while posting the material

    Hi experts, While intially posting the material in Mb1c by movement type 561. while saving it show the below error "Account determination for entry GKR GBB ____ BSA 3000 not possible" pls help regards arun

  • Display won't go to sleep / screen saver won't turn on

    Since upgrading to Snow Leopard instead of the screen saver activating or the screen going to sleep when inactive, the screen goes dark for about a second and then flashes back on. It's resulted in images being burned into my screen a couple of times

  • Need some logic for displaying data from Internal Table

    Hi Guys,               I have a Internal Table with multiple entries. My ITAB looks like below. PN  VBELN  MATNR MATKX 1     111       P-101    XXX 2     121       P-102    XYZ 2     112       P-103    ABC 3     134       P-104    DEF 3     124      

  • Dynamic FLV/MPG - Video Player

    Hi guys, Thanks in advance. I am trying to create an online video player of short videoclips. I have an array, which has around 10+ FLV and a few MPG videoclips. The requirement- - Dynamically load and display these movieclips - one after the other.

  • Head phones for W518a

    I recently bought a W518a and was surprised that it didn't come with the headphones in the box this time.  I had a w300i about 2-3 years ago and it came with the headphones then. Well I found the top half of the headphones from the w300i, but not the