CEUPDATEMENAGER Hangs while upgrading from CE 7.11 to 7.20

Hi,
I am updating our sandbox CE 7.11 SPS4 system to CE 7.20 SPS2.
I have downloaded the CEUPDATEMANAGER file for CE 7.20 from service marketplace: CEUPDATEMANAGER01_0-20005861.SAR (for AIX).
After extracting this file in kernel directory, I started the ceupdatemanager using root user. Then, I selected the instance to be
updated, entered Administrator password and then on next screen enetered password for sceadm. Immediately aftere this, the gui screen gets hung and its status bar shows:
unknown message ID (ce.updater.checkingFile) with parameter
(s): /usr/sap/SCE/J10/j2ee/cluster/apps/sap.com/core.lyt/developmentserver/res/skins/neutral/images/chart_line_overlaid3d.gif
Also, sapinst_dev.log shows the following warning:
WARNING 2010-08-13 07:21:22.144 [syuxcgroup.cpp:146]
<anonymous namespace>::for_each_user lib=syslib module=syslibSystem call failed. Error 3 (No such process) in execution of system
call 'getpwent' with parameter (), line (143) in file (syuxcgroup.cpp),
stack trace: iaxxejsctl.cpp: 272: EJS_ControllerImpl::executeScript()
iaxxejsbas.hpp: 450: EJS_Base::dispatchFunctionCall()
iaxxejsexp.cpp: 1154: EJS_Gui::invokeDialog()
iaxxgenimp.cpp: 239: CGuiEngineImp::showDialogCalledByJs()
iaxxgenimp.cpp: 1238: CGuiEngineImp::acceptAnswerForBlockingRequest
iaxxdlghnd.cpp: 63: CDialogHandler::doHandleDoc()
iaxxcdialogdoc.cpp: 179: CDialogDocument::submit()
iaxxejsctl.cpp: 272: EJS_ControllerImpl::executeScript()
iaxxejsbas.hpp: 450: EJS_Base::dispatchFunctionCall()
iaxxejsexp.cpp: 178: EJS_Installer::invokeModuleCall()
syxxbuser.cpp: 242: *** syslib entry point CSyUser::isMember(const
iastring & 'sapinst') const ***
syuxcuser.cpp: 664: bool CSyUserImpl::isMember(const iastring & sName)
const
syuxcgroup.cpp: 404: PSyAccountIterator CSyGroupImpl('2000')::getMembers() const
syuxcgroup.cpp: 102: <anonymous namespace>::for_each_user
Please help.
Thanks,
Shitij

Hi,
Well, I moved past this problem simply by waiting on that hung screen. I realized from the status bar that the tool was, for some reason, scanning my filesystem for somthing, specially under /usr/sap/SID/J*/j2ee. After almost an hour, the scanning got over and I got a popup asking me to click on OK or Cancel. If I click Cancel, the next screen appears and I am able to move forward.
This has happened for every system that I have patched, Dev, QA, Test, etc. Also, one system had 2 additional app servers and in that, the scanning took close to 3 hrs. Strange thing.
I am not sure how this is related to the note above. Any info you have about that?
I would soon be updating my CE system from 7.20 SPS2 to SPS3. Hope it does not cause the same thing then also.
Regards,
Shitij

Similar Messages

  • 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

  • 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.

  • 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

  • OIM DB error while upgrading from OIM-R1 to OIM-R2

    Hi All,
    When we were trying to upgrade a environment from OIM 11g R1 (11.1.1.5) to 11g R2 PS1 (11.1.2.1), and while upgrading the OIM schemas ( Section 6.3.8 in the document http://docs.oracle.com/cd/E27559_01/doc.1112/e28183/oim_up.htm#BABFHBFD) the OIM schema upgrade was failing and in the logs we were seeing the error mentioned below.
    Let us know if  anyone has worked/faced this issue while upgrading the OIM to R2.
    CREATE OR REPLACE VIEW ADMIN_ROLE_MEMBERSHIP_VW
    AS (
    SELECT arm_org.*,
            ac.ACT_NAME,
            ac.PARENT_KEY,
            ac.ACT_CUST_TYPE
       FROM (
             SELECT arm.MEMBERSHIP_ID,
    arm.ROLE_ID,
    arm.USER_ID,
    arm.SCOPE_ID as ROOT_KEY,
    arm.INCLUDE_HIERARCHY,
    arm.SCOPE_ID,
    'UN-EXPANDED' as HIERARCHY_DETAILS
               FROM ADMIN_ROLE_MEMBERSHIP arm
             UNION ALL -- much better, and current table structure and query will always ensure unique values
             SELECT arm.MEMBERSHIP_ID,
    arm.ROLE_ID,
    arm.USER_ID,
    oh.PARENT_ACT_KEY as ROOT_KEY,
    arm.INCLUDE_HIERARCHY,
    oh.CHILD_ACT_KEY as SCOPE_ID,
    'EXPANDED' as HIERARCHY_DETAILS
               FROM ADMIN_ROLE_MEMBERSHIP arm, ORG_HIERARCHY oh
              WHERE arm.SCOPE_ID=oh.PARENT_ACT_KEY
                AND arm.INCLUDE_HIERARCHY=1
              ) arm_org,
            ACT ac
      WHERE ac.ACT_KEY = arm_org.SCOPE_ID)
    [2013-09-11T18:28:25.119-07:00] [OIM] [INCIDENT_ERROR] [UPGCMP-00924] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] SQL error [{0}]
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] Cause: JDBC error while executing query
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] Action: Make sure DB is reachable and configured properly
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] [[
    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
            at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)
            at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1110)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
            at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2147)
            at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:2091)
            at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:320)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.loadScript(SchemaUpgrader.java:245)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.loadStoredProcedures(SchemaUpgrader.java:190)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.doUpgrade(SchemaUpgrader.java:108)
            at oracle.iam.update.plugin.oim.OIMSchemaUpgradePlugin.upgrade(OIMSchemaUpgradePlugin.java:292)
            at oracle.ias.update.plugin.Plugin.upgrade(Plugin.java:358)
            at oracle.ias.update.plan.PlanStep.upgrade(PlanStep.java:292)
            at oracle.ias.update.UpgradeDriver.doUpgrades(UpgradeDriver.java:465)
            at oracle.ias.update.gui.UAUpgradeThread.run(UAUpgradeThread.java:41)

    Hi,
    The correct upgrade path is: 11.1.1.5.0 -> 11.1.2.0 -> 11.1.2.1

  • How to create new field while upgrading from CRM 4.0 to 7.0

    Hi ,
    How do we create new field on UI and store data into existing field in database?
    Is there any option in AET to skip the creation of new field in the database table ?
    Custom field is already created in GUI and database table while using CRM 4.0
    Now, after upgrading to 7.0 EHP3 , I need to bring this field on the UI .
    Using AET may create new field again in the database table.Please suggest.
    New filed needed to be created in Marketing Campaign Element Header data.
    Thanks
    Jayasri

    Hi Jayasri,
    As a custom fields are already there in crm 4.0. You don't need to use AET again to add field.
    These enhancements still exist after the upgrade. Dependent on the enhancement object and type some manual steps are necessary.
    For example regarding a single field enhancement for the BP the whole framework is enhanced after the upgrade. There is only one manual step to bring the field on the relevant view(s) via the UI Configuration Tool. For whole BP tables some more manual steps are necessary, these steps are described in the note 1069791 - CRM WebClient UI for EEW enhancements (reference to more notes regarding the EEW after the upgrade).
    For set types, we need to generate UI With the help of the UI configuration tool the settypes could become visible in the Web UI.
    I didn't understood your scenario, can add little more information why you want to add field by AET if available in DB?
    Refer
    FAQ - SAP CRM Upgrade from release 4.0 to 7.0 
    Regards,
    Arjun

  • Mapping changes while upgrading from PI 7.0 to PI 7.31

    Hello Experts,
    We are upgrading from PI 7.0 EHP 2 to PI 7.31 SP 14 , Dual stack only.
    While migration, there are some doubts related with mapping, which are not getting cleared even from going through various blogs like:
    Migration Woes?
    PI/XI: PI 7.1 upgrade/migration - Message Mappings
    Below are my doubts:
    As there are mapping changes for IFS, IFSWITHOUT ELSE & Context functions, so exactly what these changes are and how would this work, how can we identify & rectify in all the mappings?
    What changes to be performed for Java mapping & XSLT mapping?
    Are there any changes for ABAP proxy?
    Any help is appreciated
    Many Thanks!!!

    Hi Lisin,
    You need to change in Java mapping accordingly and compile in jre1.6 as many methods used in older version are obsolete now.
    You need to write transform instead of execute which was used for PI 7.0
    public void transform(TransformationInput in, TransformationOutput out) 
                   throws StreamTransformationException { 
    You can easily write the code again in message mapping as discussed:
    Write Java Mapping directly in ESR!
    For XSLT mapping, the older version will be supported as the execution is done using SAP XML Toolkit which is supported in higher versions also.
    XSLT Mapping - Managing Services in the Enterprise Services Repository - SAP Library
    ABAP proxy will be as it is if you are going for classical scenario as you will be using 7.31 Dual stack.
    But if you want to go for AAE Integrated Configuration, you need to do required configuration changes in ECC for outbound Proxy:
    Proxy to file scenario using AAE - with full configuration
    I am not sure whether you need to change in Graphical standard mapping for those functions which are already there in PI 7.0.
    Regards,
    Suman

  • HELP! while upgrading from 10.6.8 to mountain lion on MacBook pro encountered Mac HD error. Verify indicates Repair Disk needs to run but it will not highlight. Verify Permissions indicates I do not have access. Reinstall does not work. Tx. Freaking out

    Really nervous. Can't get any of the support instructions to work. Error occurred while installing mountain lion upgrade from 10.6.8. PLEASE HELP!
    I know I'll be checking for responses all night. Thanks

    Assuming Mountain Lion did not install, you'll need to boot up from your Snow Leopard DVD (by holding down the C key while you reboot).
    Once you've booted from the DVD (be patient, it's not exactly lightning fast!), you'll want to go to Utilities --> Disk Utility...and run Repair Disk.
    The problem you're seeing is that there's something not right with your MacBook Pro's hard drive, and Repair Disk cannot be run on the same volume you booted from. 
    If Repair Disk was run successfully when you booted from the Snow Leopard DVD, and you see indications that whatever was wrong was corrected, you can now boot back up again from the MacBook Pro's hard drive.  Once you're up and running on the internal hard drive, try installing Mountain Lion again.

  • Error in adpatch while upgrading from 11.5.3 to 11.5.5

    Error while applying adpatch for upgrading workflow from 2.5 to 2.6(patch number - 2032040, database driver)
    ATTENTION: All workers either have failed or are waiting.
    Restarting all failed workers... (restart # 1)
    Fixed: file xmlparserv2.zip on worker 1 for product fnd username APPLSYS.
    Restarted: file xmlparserv2.zip on worker 1 for product fnd username APPLSYS.
    FAILED: file xmlparserv2.zip on worker 1 for product fnd username APPLSYS.
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file xmlparserv2.zip on worker 1.
    while upgrading as first step I installed java(1.3) and altered file jserv.properties.
    I didnot reset path and classpath as it was not mentioned in their document
    then i was to xmlparser,
    HOW TO LOAD XML PARSER, XML SQL UTITLITY and XMLGEN PKG INTO THE 11i DATABASE
    To load the XML parser:
    10. loadjava -user apps/apps -r -v xmlparserv2.jar
    while doing this step i got 108 errors.
    then from metalink, i saw username/pwd should be sys/change_on_install
    then I got just one error.
              --------------------------- I got one error here
              cannot resolve org/xml/sax/helpers/AttributeListImpl
    I ignored and continued
    after doing remaining steps, i did
    load the XML SQL utility (XSU):
    create the XMLGEN package body:
    which went fine
    after that while applying patch 2032040, I got file xmlparserv2.zip on worker 1.
    I restarted the worker many times, but no success
    Regards
    Deepak

    Please review the following notes:
    Note: 400159.1 - Unable To Run Technology Stack Validation Report On Db Tier
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=400159.1
    Note: 362042.1 - Technology Stack Validation Utility Error on the Database Tier: ERRORMSG: Invalid APPS database user credentials
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362042.1

  • 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

  • Can you format your hard-drive while upgrading from Leopard do Snow Leopard (upgrade version)?

    Hello,
    I want to purchase Snow Leopard (upgrade version) but I was planning on doing a format when installing it.
    Is it possible?
    Thank you!

    cocoazenith wrote:
    I want to purchase Snow Leopard (upgrade version) but I was planning on doing a format when installing it.
    Is it possible?
    Yes, the 10.6.3 white retail disk can upgrade 10.5 to 10.6 via the installer, but you can also hold c  or option key down while booting from the disk and use Disk Utility to Erase and then install 10.6 fresh.
    Naturally all programs and user file will be removed, so you need to backup files first and take stock of your programs that will have to be reinstalled again from original sources.
    To get the white 10.6.3 disk, call Apple via the phone, it's not sold online anymore, or search Amazon.com or amc related websites for the disk.
    Most commonly used backup methods
    How to erase and install Snow Leopard 10.6
    However if you choose to upgrade over 10.5, keeping your programs and files (backup files regardless) intact and it proceeds just fine, but want to improve the performance, you can use this method
    How to properly defrag a Mac's hard drive
    If your upgrading from 10.5 to get to 10.7 or 10.8, I don't advise it. Software Update to 10.6.8 max and stay there, your machine is too old.
    Things to consider before upgrading OS X

  • 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

  • Depreciation Run Error while Upgrading from SAP 4.6C TO ECC6.0

    Hi
    We are upgrading from 4.6c to ECC 6.0.  In ECC 6.0 we need to make the Number Range Interval as "Internal" and Batch Session tick to be removed from the Depreciation Document Type. 
    While executing depreciation run, it got terminated and I have done the above changes.  After that I have restarted the Depreciation.  I have got the following error Message.
    Message(s) during check of document ERROR00001
    Message no. AAPO511
    S:/SAPDMC/LSMW_AUX_020:006 20
    Message no. /SAPDMC/LSMW_AUX_020006
    If any body aware solution, kindly reply to this message
    Thanks
    siva

    Check this useful links
    Key differences between SAP 4.6 - ECC 6.0
    http://sap.ittoolbox.com/groups/technical-functional/sap-hr/difference-sap-ecc60-with-sap-r3-3161113
    LE/WM functionality difference between 4.6c and ECC 6.0
    differences between SAP R/3 ECC 6 & SAP R/3 4.6C in Material management mod
    Upgrade from SAP R/3 4.6 C to ECC6.0 - To find obselete and new tcodes
    Upgrade from SAP R/3 4.6 C to ECC6.0 - To find obselete and new tcodes

Maybe you are looking for

  • ATTN: GPO Users

    I'm getting ready (I hope) to upgrade my Garritan Personal Orchestra software to version 2.2.1. If there are any other GPO/Logic users reading this, and you have upgraded, have you noticed any performance glitches, plugin/sample loading errors (besid

  • Is there a download for Apple

    My friend would like to use one of my plotting programs. He has an Apple, and I would like my .jar to run on it. Can it? I don't see any JRE downloads.

  • How can I drag pictures into the new Pages so that they are inline where I release the drag?

    Back in the day, like last week, I could drag in a picture and if I was holding command when I let go, the image was inlined exactly where I released.  Now that functionality seems to be gone - or maybe I just don't understand how to access it.

  • Fatal error when installing on "existing" m/w home

    Hi, I am trying to install Jdeveloper 11.1.1.5.0 using an existing middleware home (WLS 10.3.5). But it results into a fatal error. Precisely, the question is why jdeveloper installer tries to install WLS again even if I clearly instruct to "use exis

  • Flip Video now works directly with IM08

    PLug in your Flip, select import movies in IM08 and navigate to the DCIM folder on your Flip camera and select your videos. Wha la. The Flip videos are imported into IM08. And they appear to use the same codec in IM08 (ie they aren't converted to a f