Text Determination Error in Upgrade Project

Hi All,
I am working on Upgrade Project from 4.6C to ECC 6
I encountered the error like the Text Determination is missing in all the Documents like Sales Order, Delviery and Billing Documents in ECC6.
But the same is appearing in 4.6 C.
I am getting the error " Error in Text Formating ".
Message No.VX201.
Could you please give your valuable inputs on this.

Hi,
Check the settings again in 6.0. Follow the path IMG-sales and distBasic Func--Text Control. It may that while migrating the data certain tax type is found missing in the new system.
Regards,
Saurabh

Similar Messages

  • Error  During text determination

    Dear Experts
    I am facing one problem in Text determination.Error is "The SD_WORD_PROCESSING function module is for creating the "Maintain Text" dialog box. You have called up the function module with the wrong values so it is not possible to edit text properly."
    Every thing is ok with text determination process config
    This happen because of the upgradation  from ECC 4.7 to ECC 6 some programs are not uploaded.
    Can you please give me the solution.
    Regard
    Anand.

    Anand,
    did u check the OSS  Note 900607 - Checklist: SD texts when upgrading to 4.70 and higher. there is some checklist, please check this and give your feedback.
    PS: is it Anand from ttl?
    Thanks,
    Raja

  • Error in text determination procedure

    hi gurus
    i have defined text determination procedure from customer master to sales order and it works fine, when i am defining a text det procedure for delivery document i have referenced the text from sales order. i am able to define it but while assigning it to the Delivery doc type it says the text procedure is not defined. i can cleary see the text procedure ( It can be seen in F4 also) and i am sure all the settings are in place. Can anyone guess what could be the reason for this error?
    Thanks in advance
    Srini

    Hi Srini
    I dont have the perfect solution for your problem. But jst wana tel u that watever u have described, seems like the mistake is very minor and un-noticeable. If u r using VOTX, go for VOTXN and try it once again step by step.
    Or go for a break... come back after15 mins and give it more enthusiastic shot, it will work out. Most of such problems get solved by making ur mind free. haha.
    i m not kidding.
    - Best of luck.
    Prashant

  • Secuirty Deposit issue in upgrade project[ECC 6.0]

    hi,
    Good day guys.. hope every one is doing well. ive got custom prog., for secuirty deposit one which is FPSEC2 t.code. if the secuirity deposit is requested status then its going to Reversed in the fkk_ sec table or if its is partially paid then its going change to cleared in the fkk_sec table. cusotm prog is  working in 4.7 but not in ECC,i think prob is with FKK_S_SECURITY_CHANGE function module  when i run the custom prog for the requested document items then its goes to short dump  & point to as below as
    Plz send ur valuble advices..
    CALL FUNCTION 'FKK_ROLLBACK_POSTING_MEMORY'.
        ROLLBACK WORK.
        MESSAGE X361 WITH MSGID MSGNO NTEXT(50) NTEXT+50(50).
    In my cusotom prog., iam updating the requested document to reversed as below code as
    select * from FKK_SEC into table I_FKK_SEC
               where VKONT = P_VKONT.
      loop at I_FKK_SEC.
        call function 'FKK_DB_CASH_SECURITY_STATUS_GP'
         exporting
           X_SECURITY               = I_FKK_SEC-SECURITY
    *   X_IGNORE_TFK042C         =
          importing
           Y_STATUS                 = V_SCODE
           Y_STATUS_TXT             = V_STATUS
          exceptions
            NOT_FOUND                = 1
            others                   = 2
        if SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
        translate V_STATUS to upper case.
        if V_STATUS cs 'REQUESTED'
        or V_STATUS cs 'PARTIALLY PAID'.
          if V_STATUS cs 'REQUESTED'.
            V_AUTO-OKCODE = 'REV'.
            move-corresponding I_FKK_SEC to V_AUTO-SEC_D.
            V_AUTO-SEC_D-REV_REASON = '0006'.
            V_AUTO-USE = 'X'.                                   "LC20071121
            move-corresponding I_FKK_SEC to W_AUTO_SEC_C.
            append W_AUTO_SEC_C to V_AUTO-SEC_C.
            call function 'FKK_S_SECURITY_CHANGE'
              EXPORTING
                X_SECURITY     = I_FKK_SEC-SECURITY
                X_NO_DIALOG    = 'X'
                X_AUTO         = V_AUTO
                X_OBJ          = V_OBJ
              IMPORTING
                Y_DB_UPDATE    = V_UPDATE
              EXCEPTIONS
                NOT_FOUND      = 1
                FOREIGN_LOCK   = 2
                NOT_AUTHORIZED = 3
                GENERAL_FAULT  = 4
                INPUT_ERROR    = 5
                others         = 6.
            if SY-SUBRC <> 0.
              message id SY-MSGID type SY-MSGTY number SY-MSGNO
                      with SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            endif.
            if V_UPDATE = 'X'.
    * security deposit reversed
            endif.
          else.
            V_OBJ-SEC-G-C_STATUS = V_SCODE.
            move-corresponding I_FKK_SEC to V_OBJ-SEC-G.
            append W_AUTO_SEC_C to V_OBJ-SEC-C.
            move-corresponding I_FKK_SEC to V_OBJ-AUTO-SEC_D.
            append W_AUTO_SEC_C to V_OBJ-AUTO-SEC_C.
            V_OBJ-AUTO-OKCODE = 'CLR'.
            call function 'FKK_O_SECURITY_ACTION'
              EXPORTING
                X_OKCODE       = 'CLR'
              CHANGING
                XY_OBJ         = V_OBJ
              EXCEPTIONS
                CANCELLED      = 1
                NOT_AUTHORIZED = 2
                others         = 3.
            if SY-SUBRC <> 0.
              message id SY-MSGID type SY-MSGTY number SY-MSGNO
                      with SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            endif.
          endif.
        endif.
      endloop.
    Edited by: kiran29 on Apr 6, 2011 2:02 PM
    Edited by: kiran29 on Apr 6, 2011 2:10 PM

    Hi Kiran,
      we did upgrade ECC 6.0 EHP4 SP7 ( IS-U  and RM-CA ).
      while using FPE1   Transaction we are getting dump.
    Dumping happened exactly in this line.
    MESSAGE X361 WITH MSGID MSGNO NTEXT(50) NTEXT+50(50).
    Error analysis
        Short text of error message:
        Message was issued at an unpermissible point in time
        Long text of error message:
         Diagnosis
             The message previously issued was sent at a time that is not
             permitted. Changes to the database that belong together logically
             must not be interrupted through dialogs because otherwise
             inconsistent data may be created. In this case, you attempted to
             output message >1 003.
             The text of the message was
             Account determination not possible for key
         System Response
             The system stops the posting.
         Procedure
             Contact your system administrator.
         Procedure for System Administration
             If the program error occurred in an
             o   SAP standard program, enter a problem message
             o   Own program, correct the program
        Technical information about the message:
        Message class....... ">0"
        Number.............. 361
        Variable 1.......... ">1"
        Variable 2.......... 003
        Variable 3.......... "Account determination not possible for key"
        Variable 4.......... " "
      Information on where terminated
        Termination occurred in the ABAP program "SAPLFKB0" - in
         "PROCESS_WITHOUT_MESSAGE".
        The main program was "SAPMFKP1 ".
        In the source code you have the termination point in line 274
        of the (Include) program "LFKB0FP0".
    I am trying to find the reason for dumping by debugging.
    till now i am not able to solve.
    Kindly help me to give any tip to proceed further.
    Thanks,
    s

  • Upgrade project - Roles and Responsibilities

    Hi All,
    Can any one tell me what are the roles and responsibilities of a SD consultant in a upgrade project.
    thanking you in advance for your kind help.
    regards
    S D Toshniwal

    major reponsibilities of SD consultant would be
    Configuration and customization of various sales documents delivery documents and billing documents.
    Partner functions at various document levels.
    Incompletion logs at pre-sales, sales and at Delivery documents.
    Copy controls
    Maintaining pricing at various document levels
    Output and text determination
    Account determination
    Carrying rebate agreements at billing document level etc.
    Regards,
    Vishal

  • Some problems about Upgrad project

    Dear,
        I have some question for Upgrade project.shi
    P1: in form ZSD_EXPORT_FECO, check texts, Windows F005 has an error :
         /: AND &V55EFECO-REMA_TEXT2& = ' '
                   Unknown command
           I don’t know how to correct it.
    P2: in program ZFUMSV00, the source code is   sy-repid    = 'RFUMSV00'.
         In 700 version, it checks error: the field “sy-repid” can’t be changed.
         But, in 46c version, it is OK.
            I don’t know how to correct it.

    Hi
    check this doc
    While doing Upgrade You have to aware of all related program like BDC's , Screens related errors and all dictionary related problems.
    Some function modules may become obsolete, and some screens will change
    and some new fields will be added in the new versions etc.
    Also take care of SPAU and SPDD tcodes.
    You should be able to know about Unicode concept in sap.
    check this
    http://www.thespot4sap.com/upgrade_guide_v2.pdf#search=%22upGRADE%20STEPS%20-%20SAP%22
    also chk these 2 notes in service.sap.com
    Technical Upgrade is only a version upgrade without any functionality changes.
    The objects that are needed to be upgraded are:
    Includes
    Function Groups / Function Modules
    Programs / Reports
    OSS Notes
    SAP Repository Objects
    SAP Data Dictionary Objects
    Domains, Data Elements
    Tables, Structures and Views
    Module Pools, Sub Routine pools
    BDC Programs
    Print Programs
    SAP Scripts, Screens
    User Exits
    You can refer to the below links for more information on technical upgrade:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/07/upgradeFROMR3TOmySAPERP-PARTII&
    https://wiki.sdn.sap.com/wiki/display/profile/UPGRADEFROMR3TOmySAPERP-PARTIII
    http://help.sap.com/saphelp_nw2004s/helpdata/en/60/d6ba7bceda11d1953a0000e82de14a/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2e/6d66647d9011d396b60000e82de14a/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    Regards
    Anji

  • Error while creating project automatically from cProjects

    Hi,
    Need suggestion on creating projects in SAP-PS from cProjects. There is cProjects & SAP-PS interface.The requirment is to create project in SAP-PS from cProjects. All the configuration has done in cProjects & PS module also. While saving the projects & checking the accouting the following error & project is n't creating.
    1.Combination company / CO area is invalid Message no. KO124
    2.Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    3.Only one error message is transferred from the log to the cockpit
    Message no. IAOM_CPROJECTS029
    I would like to request all to suggest in fixing the issue.
    Thank you for your coopearation.
    Regards,
    Ranjan

    Hi,
    The neccesary configuration for cProjects & SAP-PS interface are as follows.
    1. Project Types in cProjects, Object types, Organisation unit with Org structure in line with project profile
    2. Activate Accounting integration
    3. Object types for object link (WBSE in this case)
    4. Accounting integration using cost collector
    5. Easy cost planing settings both in R/3 systems & cProjects
    6. Project profile configuration in R/3 (cProjects standard)
    7. CO Scenario maintainance view determination (Multi level controlling-Project role, automatic)
    All the enterprise structure assignments should be same in cProjects & R/3.
    Hope this may help you.
    Regards,
    Rakesh Pradhan

  • Error While Creating Project From Active Workspace.

    Hi Friends,
    While I am trying to create Project (WebDynpro DC) from my Active Workspace.
    I am getting few errors..They are as follows.
    1> .classpath (read only exception) --- By mistakenly .classpath was added to one of my activity and it is in DTR. So kindly suggest me a solution to Delete this file.
    2> Resource ProjectProperties.wdproperties is not in sync with latest version.
    To delete resource:
    - check-in changes and then delete.
    - revert resource and then delete.
    Kindly suggest me some solutions.
    Thanks and Regards.
    Yajush Mishra

    Hi,
    The neccesary configuration for cProjects & SAP-PS interface are as follows.
    1. Project Types in cProjects, Object types, Organisation unit with Org structure in line with project profile
    2. Activate Accounting integration
    3. Object types for object link (WBSE in this case)
    4. Accounting integration using cost collector
    5. Easy cost planing settings both in R/3 systems & cProjects
    6. Project profile configuration in R/3 (cProjects standard)
    7. CO Scenario maintainance view determination (Multi level controlling-Project role, automatic)
    All the enterprise structure assignments should be same in cProjects & R/3.
    Hope this may help you.
    Regards,
    Rakesh Pradhan

  • Error while upgrading Portal from 10.1.2 to 10.1.4

    This is the error message I am getting when I try to upgrade portal from 10.1.2 to 10.1.4 by applying the patch.
    NOTIFICATION:1 Framework: Error: Component upgrade failed PORTAL
    NOTIFICATION:1 Framework: Error: PORTAL component version is: 10.1.2.0.2 INVALID.
    Please let me know if any has has a solution?
    ==========================================
    D:\Software\Oracle\IDM\as_windows_x86_portal_1014\mrua_051020\mrua>mrua.bat -ora
    cle_home D:\Software_Installations\OraHome_Infra_01 -oid_host <hostname> -oid_ssl_port 636
    Executing mrua.pl
    Running on Windows
    OracleAS Metadata Repository Upgrade Assistant 10.1.4.0.0
    Enter the password for SYS:
    Enter the password for cn=orcladmin:
    Enter the password for cn=orcladmin:
    Upgrading the OracleAS Metadata Repository to release 10.1.4.0.0
    Calling upgrade plugin for MRUA
    Component has already been upgraded MRUA
    Calling upgrade plugin for PORTAL
    Error: Component upgrade failed PORTAL
    Error: PORTAL component version is: 10.1.2.0.2 INVALID
    Calling upgrade plugin for MRC
    Component has already been upgraded MRC
    FAILURE: Some OracleAS plug-ins report failure during upgrade.
    Log file: D:\Software_Installations\OraHome_Infra_01\upgrade\logs\mrua2007-07-1
    3_02-07-15PM.log
    Finished mrua.pl

    That didn't help for me....
    I have those things shut down already and you can see below what I'm getting on the re-run:
    -bash-3.00$ /app/oracleas/as1012portal/bin/emctl stop iasconsole
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2 Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://asdev:1811/emd/console/aboutApplication
    Stopping Oracle Enterprise Manager 10g Application Server Control ...
    Cannot determine Oracle Enterprise Manager 10g Application Server Control process; /app/oracleas/as1012portal/bin/emctl.pid does not exist.
    Oracle Enterprise Manager 10g Application Server Control may not be running.
    -bash-3.00$ /app/oracleas/as1012portal/opmn/bin/opmnctl stopall
    opmnctl: opmn is not running
    -bash-3.00$ mrua/mrua.sh -oracle_home /app/oracleas/as1014metadatarepository -oid_host asdev -oid_ssl_port 636
    Executing mrua.pl
    Running on UNIX
    OracleAS Metadata Repository Upgrade Assistant 10.1.4.0.0
    Enter the password for SYS:
    Enter the password for cn=orcladmin:
    Upgrading the OracleAS Metadata Repository to release 10.1.4.0.0
    Calling upgrade plugin for MRUA
    Component has already been upgraded MRUA
    Calling upgrade plugin for PORTAL
    Error: Component upgrade failed PORTAL
    Error: PORTAL component version is: 10.1.2.0.2 INVALID
    Calling upgrade plugin for MRC
    Component has already been upgraded MRC
    FAILURE: Some OracleAS plug-ins report failure during upgrade.
    Log file: /app/oracleas/as1014metadatarepository/upgrade/logs/mrua2007-10-23_00-42-55PM.log
    Finished mrua.pl
    -bash-3.00$ grep PORTAL /app/oracleas/as1014metadatarepository/upgrade/logs/mrua2007-10-23_00-42-55PM.log
    2007/10/23 12:43:06.236 CST NOTIFICATION:1 Framework: Calling upgrade plugin for PORTAL
    2007/10/23 12:43:28.203 CST NOTIFICATION:1 Framework: Error: Component upgrade failed PORTAL
    2007/10/23 12:43:28.209 CST NOTIFICATION:1 Framework: Error: PORTAL component version is: 10.1.2.0.2 INVALID
    There is another oracle instance we have, the one that is hosting the LDAP server, and after the above I also tried doing a stopall there, then bringing up only the ldap server which is required for the upgrade, and then shutting down the iasconsole for that instance too so that only the ldap server remained, then re-running the portal upgrade. It didn't help.
    Any ideas?

  • Account determination error for Account key

    Hi Everyone,
    I have maintain one condition manual pricing e.g ZMRG where i m manually putting the margin of sales price
    this condition is only for calculation and i dont want to post it to account. But at the time of bill it is giving me account determination error. In VF02 i check it is showing error due to not assigning the account key for that condition but here i dont want to post that condition to accounts.
    Please suggest me the best possible way.
    Regards
    Shambhu

    Hi,
    You said that the condition is manual.
    Now you saying:
    i maintained the condition for it instead of only text in PP
    Have you got the solution? Then please update.
    Thanks,
    Ravi

  • Text determination procedure in Marketing Plan

    HI All,
    I am using text object CGPL_TEXT and Text determination procedure MPL assigned under it. Text determination procedure MPL has two text types "Description" and "Notes". System is allowing to select "Notes" in marketing plan and enter the text. Next time if I try to select same type "Note" then system is giving error "Make entry in the field Language". But I can select other type "Description" and enter the text.
    Does it mean system allow to enter text for a text type only once? What if I want to use same text type for multiple time to enter information related to the same item.
    Any pointer?
    Regards,
    Nikhil

    Dear Nikhil,
    You are correct that in standard only one text type can be created per language... i.e. 'Note in English' or 'Description in English' can only be created once. But you can certainly add information to a previously created text type.
    I'm not sure if there is a technical way to change this.
    Regards,
    Anik Roy
    SAP CRM Moderator

  • Error when upgrade Oracle client 9.2.0.5.0 to 9.2.0.5.3

    Hi all,
    I'm new with Oracle community so I hope you guys can help me and give me some suggestion with my case.
    I got an error when upgrade Oracle client 9.2.0.5.0 to 9.2.0.5.3
    I tried many times but can’t do upgrade successfully
    This the error message I got when doing the job:
    [ http://picasaweb.google.com/hoagao84/Oracle#5443442931867670386]
    Appreciate your help.
    Log files:
    Command arguments are: apply
    OPatch version is: 1.0.0.0.48
    Using ORACLE_HOME/oui to look up oui libs...
    Oracle Home = d:\oracle\ora92
    Location of Oracle Inventory = D:\oracle\ora92\inventory
    Oracle Universal Installer shared library = D:\oracle\ora92\oui\lib\win32\oraInstaller.dll
    Path to Java = "D:\oracle\ora92\jdk\jre\bin\java.exe"
    Location of Oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = D:\oracle\ora92\oui
    Required Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    Checking if this is a RAC system...
    Accessing inventory... This may take up to 300 seconds.
    (retry 10 times, delay 30 seconds each time)
    System Command: ""D:\oracle\ora92\jdk\jre\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -classpath "D:\oracle\ora92\oui\jlib\OraInstaller.jar;D:\oracle\ora92\oui\jlib\srvm.jar;D:\oracle\ora92\opatch\jlib\opatch.jar;D:\oracle\ora92\oui\jlib\xmlparserv2.jar;D:\oracle\ora92\oui\jlib\share.jar;.:D:\oracle\ora92\jlib\srvm.jar" opatch/O2O "d:\oracle\ora92" "D:\oracle\ora92\oui" opatch.pl 1.0.0.0.48"
    Result:
    output to OPatch:
    IS_CLUSTER=0
    CHECK_CLUSTER=1
    NODE_LIST=NULL
    NODE_COUNT=0
    LOCAL_NODE=NULL
    IS_CFS=0
    RAC_CODE=0
    HOME_INDEX=1
    This is not a RAC system
    Interim Patch ID: 3738339
    Checking the patch inventory.
    Component Name: oracle.rdbms
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.rdbms_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.oracore_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.xdk_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.dbjava_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.java.javavm.javatools
    Component Version: 9.2.0.5.0
    Component Name: oracle.cartridges.context
    Component Version: 9.2.0.5.0
    Component Name: oracle.cartridges.locator
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.net_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.ldap_rsf
    Component Version: 9.2.0.5.0
    Component Name: oracle.emprod.oemagent.base_oemagent
    Component Version: 9.2.0.5.0
    Component Name: oracle.isearch.is_common
    Component Version: 9.2.0.5.0
    Component Name: oracle.options.olap.cwmlite
    Component Version: 9.2.0.5.0
    Component Name: oracle.rsf.nlsrtl_rsf
    Component Version: 9.2.0.5.0
    Bugs fixed by this patch 3738339:
    3741539 : LOGICAL STANDBY FAILS ORA-1422 MERGING PARTITIONS WITH LOB COLUMN
    2800494 : KCBZIB XHINT FORCES SINGLE BLOCK READS INADVERTENTLY FOR SINGLE INSTANCE
    3239873 : EXTREMELY HIGH PARSING TIMES WITH AND BETWEEN IN ORACLE 9.2.0
    2918138 : ORA-600 (KOHDTF048) WHEN USING PIPELINED PL/SQL TABLE FUNCTIONS
    3575743 : 2004-S144E
    3554319 : APPSST; ORA-00600 [KQLUDP2] RUN DURING APPS UPGRADE
    3666502 : ORA-00600 [1236] RANDOMLY OCCURING
    3752406 : MERGE LABEL REQUEST ON TOP OF 9.2.0.5 FOR BUGS LISTED BELOW
    3528282 : 2004S075E
    3412818 : REPEATED MESSAGES IN LGWR TRACE
    2690205 : 2003-S190E
    3543125 : 2004-S089E
    3571233 : 2004-S141E
    3458446 : 2004S059E
    2810394 : LNXN2PD RETURNS SCALE OF 42 WHEN COVERTING ORACLE NUMBER 0. TO PACKED
    3323435 : 2003-S126E
    3356103 : ORA-600 [OPIBND0; OACCSID] IN PARALLEL QUERY SERVER P001 EXECUTING OLAP QUERY
    3668224 : CBO CALCULATE LOWER CMPTD CDN AND LEADS TO BAD EXECUTION PLAN.
    3492040 : ORA-600 [KGHFRF1] SELECTING FROM V$LOGMNR_CONTENTS
    3150750 : SM; (DBMS_STATS/AUTO_SAMPLE_SIZE) ESTIMATED NDV IS WRONG WITH HIGH SKEWS
    3566469 : 2004-S138E
    3320622 : 2003-S191E
    3749394 : SCORE() FOR FUZZY TEXT OPERATOR DIFFERENT FOR FUNCTIONAL VERSUS INDEX ACCESS
    3609791 : PSR 9.2.0.5.0 BREAKS CALL DB2 STORED PROCEDURE WITH DECIMAL PARM. SQLCODE -310
    3698501 : CGS/IMR GENERATES SAME SEQ/INCARNATION NUMBER AFTER RECONFIG
    3668572 : ORA-979 WHEN CURSOR_SHARING=FORCE OR SIMILAR
    3179637 : UNABLE TO CREATE AN ORACLECONTEXT ON AD UNDER A CHILD DOMAIN
    3571226 : 2004-S140E
    3240280 : JOBS SUDDENLY STOP ALTHOUGH NEXT_DATE <= SYSDATE
    2964252 : LPX-00252 WHEN PARSING VALID XML / DTD FILE
    3617519 : TRANSFORMATION FAILING WITH ORA-932 INCONSISTENT DATATYPE
    3172282 : ORACLE CORE DUMPS WHEN TRY TO LIST ALL ACES FOR A SPECIFIC ACL
    3637624 : WRONG RESULTS WITH DISTINCT COUNT AND UNNESTED EXISTS SUBQUERY
    3542588 : SAME EVENT 38041 USED FOR BUG FIXES 3444115 AND 3131551
    3358490 : ORA-00600 [KQSCCCK;1],[],[],[],[],[],[],[]
    3177513 : WRONG PLAN - JOIN NOT AVOIDED USING BITMAP JOIN INDEX IF UNIQUE INDEX TOO
    3509265 : SHUTDOWN DID NOT COMPLETE WITH WAITING FOR INSTANCES TO LEAVE; 2
    3516951 : BAD EXECUTION PLAN WITH MERGE JOIN CARTESIAN IN TEMP TABLE
    2954891 : ORA-600 KJMXMPM;DIFFUS], [990307644], [990307644], [3304659678]
    3388633 : LOGICAL STANDBY APPLY STOPPED WITH ORA-00600; [17090]
    3371796 : EXPLAIN PLAN HANGS ON KKORMINL
    3622875 : ORA-1499 AND ANALYZE TABLE VALIDATE STRUCTURE CASCADE ONLINE
    3412136 : BAD EXECUTION WITH MERGE JOIN CARTESIAN IN ORACLE 9.2.0.4 AND MERGEFIX 3363655
    3540576 : 2004-S083E
    3575747 : 2004-S145E
    3566813 : CTAS WITH UNION ALL AND ORDER BY RESULTS IN ORA-3113
    3811906 : MERGE LABEL REQUEST ON TOP OF 9.2.0.5
    2824035 : FXD; ORA-22921 CAUSING 4 DIFS IN LRGXG2.
    3354470 : 2003-S195E
    3518909 : UGA MEMORY NOT RELEASED AFTER USING XMLPARSER
    3617042 : BAD PLAN FOR SCH-XMLTYPE BASED WITH COLLECTIONS MAPPED TO OCT
    3583686 : MEMORY ALLOCATION ERROR DURING SPATIAL QUERY
    3597640 : MERGE LABEL REQUEST ON TOP OF 9.2.0.5.0
    3559212 : WRONG RESULTS RETURNED WITH 9.2.0.4 AND CBO
    3625370 : CGS/IMR RECONFIGURATION GOT HUNG DURING A NEW MEMBER JOINING
    3475932 : CROSS INSTANCE ARCHIVE LOG NOT GENERATED REMOTELY
    3635177 : PSRC; ORA-7445 [KXCCUIN] POSSIBLE FROM DML
    3430832 : ORA-600 [25012] AFTER CREATE OF INDEX ONLINE PARALLEL ON PART TABLE
    2338704 : FXD; 1; QUERIES ON COLLECTIONS STORED IN OUT-OF-LINE TABLES ARE NOT VIEW MERGED
    3253770 : 9I-GSI-CRITICAL PROGRAMS TIME OUT WAITING FOR LIBRARY CACHE PIN
    Reading patch XML files and doing sanity checks.
    Read the command to action file map.
    Performing initial safety check.
    Checking active processes:
    Accessing inventory... This may take up to 300 seconds.
    (retry 10 times, delay 30 seconds each time)
    System Command: ""D:\oracle\ora92\jdk\jre\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -classpath "D:\oracle\ora92\oui\jlib\OraInstaller.jar;D:\oracle\ora92\oui\jlib\srvm.jar;D:\oracle\ora92\opatch\jlib\opatch.jar;D:\oracle\ora92\oui\jlib\xmlparserv2.jar;D:\oracle\ora92\oui\jlib\share.jar;." opatch/CheckConflict "D:\oracle\ora92\oui" "d:\oracle\ora92" opatch.pl 1.0.0.0.48 3738339 "3253770 2338704 3430832 3635177 3475932 3625370 3559212 3597640 3583686 3617042 3518909 3354470 2824035 3811906 3566813 3575747 3540576 3412136 3622875 3371796 3388633 2954891 3516951 3509265 3177513 3358490 3542588 3637624 3172282 3617519 2964252 3240280 3571226 3179637 3668572 3698501 3609791 3749394 3320622 3566469 3150750 3492040 3668224 3356103 3323435 2810394 3458446 3571233 3543125 2690205 3412818 3528282 3752406 3666502 3554319 3575743 2918138 3239873 2800494 3741539 " C:\TEMP\patch92053\3738339\etc\config\actions"
    Result:
    d:\oracle\ora92\opatch\opatch.pl version: 1.0.0.0.48
    Copyright (c) 2001,2002,2003 Oracle Corporation. All Rights Reserved.
    Error in executing Java program to check conflict
    ERROR: OPatch failed during pre-reqs check.

    This is all the message when I run command in CMD prompt.
    C:\temp\patch92053\3738339\perl d:\oracle\ora92\opatch\opatch.pl apply
    Opatch Version 1.0.0.0.48
    Perl Version 5.008007
    Oracle Home = d:\oracle\ora92
    Location of Oracle Inventory = D:\oracle\ora92\inventory
    Oracle Universal Installer shared library = D:\Oracle\ora92\oui\lib\win32\oraInstaller.dll
    Path to Java = "D:\oracle\ora92\jdk\jre\bin\java.exe"
    Location of oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = D:\Oracle\ora92\oui
    Require Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    The filename, directory name, or volume label syntax is incorrect.
    D:\oracle\ora92\opatch\opatch.pl version 1.0.0.48
    Copyright (c) 2001,2002,2003 Oracle Corporation. All Rights Reserved
    Error in executing Java program to check conflict
    Error: Opatch failed during pre-reqs check.

  • Error in upgrade slm4.0

    Hi all,
      We encountered an error during upgrade solution manager 4.0.
      Our OS is Windows 2003 server and Database is DB2.
      We have upgraded the central instance successfully and then installing java Components, but the installation end with the following eroor.
      We have refered to some documents about CJS-00030, but we can find anything do really help for our case.
      Please help me!
    <b>ERROR 2007-10-30 09:02:02.687
    CJS-00030  Assertion failed: in
    function (role) {
        NWUsers.trace("NWUsers.getAccountData(", role, ")");
        this._initAccountData();
        ASSERT(arguments.callee, this.haveAccountData(role), "role " + role + " is not created yet.");
        var ad = this._readAccountDataFromKeydb(role);
        ad = this._readAccountData(ad);
        var masterpwd = this.getMasterPassword();
        if (ad.password == "" && this._useMasterPasswordForAccountData(ad) && ad.type == "USER" && masterpwd !== undefined && role != NWUsers.roles.J2EEGuest && !ad.locked) {
            ad.password = masterpwd;
        NWUsers.trace("NWUsers.getAccountData(): ", dump_properties(ad));
        return ad;
    role DB6_DB2SID is not created yet.
    ERROR 2007-10-30 09:02:02.687
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2007-10-30 09:02:02.703
    FCO-00011  The step dialogPreconditions with step key |NW_Addin_DB|ind|ind|ind|ind|0|0|NW_CreateDBandLoad|ind|ind|ind|ind|7|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_DB6|ind|ind|ind|ind|5|0|dialogPreconditions was executed with status ERROR .
    INFO 2007-10-30 09:08:42.609
    An error occured and the user decide to stop.\n Current step "|NW_Addin_DB|ind|ind|ind|ind|0|0|NW_CreateDBandLoad|ind|ind|ind|ind|7|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_DB6|ind|ind|ind|ind|5|0|dialogPreconditions".</b>
    Regards,
      Terry

    hi Siddhesh,
       Thanks for you help.
       We have checked the user and password and redo it, the same error still standing in the phase.
       We have refered to  Note 921594, it talk about the likely error and tell me to modify the control.xml. But in that case it is ORA DB, in my case it is DB2.
      Any idea?
    Best Regards,
    Terry qin

  • Compile Errors After Upgrading to SDK 4.5!

    Hello everyone,
    I am using Flash Builder version 4.0.0 and I just upgraded my SDK to 4.5.0 and I'm just getting the following 2 errors in a project, which I didn't get before installing the 4.5 SDK:
    1)  Can not resolve a multiname reference unambiguously. _class_embed_css_assets_black_start_icon_png_2045382513_738071692 (from _class_embed_css_assets_black_start_icon_png_2045382513_738071692) and components: _class_embed_css_assets_black_start_icon_png_2
    2)  Could not resolve <fx:FlexPaperViewer> to a component implementation.
    The first one is referring to an image stored in the "assets" directory which I use in a component.
    The second one is referring to a 3rd party component called FlexPaperViewer, which is used to view pdfs which have been converted to swfs.
    Any idea what might be causing this?  I hope the SDK hasn't changed so much that I have to recode the skin for the component in the first error.  As far as the second error, the FlexPaperViewer.swc is in the build path for the project.  This is very strange, but I don't know what to do to fix this!
    Thanks for any help or advice!
    Matt

    Have you created a new workspace and imported your projects into that?
    Pointing to a 4.0 workspace is not recommended.
    -Anirudh

  • BW Upgradation Project from BW 3.5 t o BI 7.0

    Dear SDNS,
                             We got an requirement to do an upgradation project for BW 3.5 to BI 7.0... This is the first time am involving for Upgradation..Am An BW Technical Consultant.. Can anyone one sugggest at scratch level wat are the roles should play by BW Technical consultant.. And Wat are the activities whould done by BW technical consultant.. An can anyone tell me.. How many SAP Consultants should involve in this Project.. i.e like how many Basis Consultants and how many ABAP Consultants should involve.. Who plays the Vital Role for Upgradation...
    Can anyone send me the Documents Related for BIW Upgradation for BW 3.5 to BI 7.0.. If anyone send me screen shots related to BW Tehcnical Consultant work it would be helpful.....
    My E-Mail - [email protected]
    Answering Getz Appreciated,
    Thanks & Regards,
    Aluri

    Hi
    I have some checklist ,do not exactly remember from where i got it but its really usefull
    There is no standard SAP checklist as it used to exist in 3.x for nw2004s upgrade and trust the master data guide available on market place is not upto the mark and expectations
    So Heads up..
    /message/2979584#2979584 [original link is broken]
    /message/2765713#2765713 [original link is broken]
    /message/2979576#2979576 [original link is broken]
    /message/3214476#3214476 [original link is broken]
    /message/3024448#3024448 [original link is broken]
    You may wish to have a look at draft portrayed below,rest you learn when you drive
    Lessons Learnt - Upgrade
    1)Convert Data Classes of InfoCubes. Set up a new data class as described in SAP OSS Note 46272.
    2)Pay attention to the naming convention. Execute the RSDG_DATCLS_ASSIGN report.
    3)Run the report RSUPGRCHECK to activate objects.
    4)Upgrading ABAP and JAVA in parallel may cause issues. If there is no custom development on J2EE instance, it is recommended to drop the J2EE instance and re-install the latest J2EE instance after the upgrade.
    5)Apply SAP OSS Note 917999 if you include the Support Patch 6 with the upgrade or you will get the error at PARCONV_UPG phase. When you upgrade to a product containing Basis 700, the phase PARCONV_UPG terminates. You included Basis Support Packages up to package level 6 (SAPKB70006) in the upgrade. The job RDDGENBB_n terminates with the error RAISE_EXCEPTION. In addition to this, the syslog contains the short dump TSV_TNEW_PAGE_ALLOC_FAILED. The program SDB2FORA terminates in the statement "LOOP AT stmt_tab". An endless loop occurs when the system creates the database table QCM8TATOPGA.
    6)Apply the OSS note 917999 if you get the following error during PARCONV_UPG phase: PARCONV_UPG terminates with TSV_TNEW_PAGE_ALLOG_FAILED
    Critical OSS Notes:
    819655 – Add. Info: Upgrade to SAP NW 2004s ABAP Oracle
    820062 - Oracle Database 10g: Patchsets/Patches for 10.1.0
    839574 – Oracle database 10g: Stopping the CSS services ocssd.bin
    830576 – Parameter recommendations for Oracle 10g
    868681 – Oracle Database 10g: Database Release Check
    836517 – Oracle Database 10g: Environment for SAP Upgrade
    853507 – Usage Type BI for SAP Netwaevers 2004s
    847019 - BI_CONT 7.02: Installation and Upgrade Information
    818322 – Add. Info: Upgrade to SAP NW 2004s ABAP
    813658 - Repairs for upgrades to products based on SAP NW 2004s AS
    855382 – Upgrade to SAP SEM 6.0
    852008 – Release restrictions for SAP Netweaver 2004s
    884678 - System info shows older release than the deployed one
    558197 – Upgrade hangs in PARCONV_UPG
    632429 – The upgrade strategy for the add-on BI_CONT
    632429 - The upgrade strategy for the add-on FINBASIS
    570810 - The upgrade strategy for the add-on PI_BASIS
    632429 - The upgrade strategy for the add-on SEM-BW
    069455 - The upgrade strategy for the add-on ST-A/PI
    606041 - The upgrade strategy for the add-on ST-PI
    632429 - The upgrade strategy for the add-on WP-PI
    Post upgrade Steps :-
    1. Read the Post Installation Steps documented in BW Component Upgrade Guide
    2. Apply the following SAP OSS Notes
    47019 - BI_CONT 7.02: Installation and Upgrade
    558197 - upgrade hangs in PARCONV_UPG, XPRAS_UPG, SHADOW_IMPORT_UPG2
    836517 – Oracle Database 10g: Environment for SAP Upgrade
    3. Install the J2EE instance as Add-in to ABAP for BI 7.0 and apply the Support Patch that equivalent to ABAP Support Patch.
    4. Run SGEN to recompile programs.
    5. Install the Kernel Patch.
    6. Missing Variants - (also part of test script)
    look at the RSRVARIANT table in SE16. If it is empty, then you will definitely need to run RSR_VARIANT_XPRA
    program - RSR_VARINT_XPRA
    OSS -953346 and 960206 1003481
    7. Trouble Shootauthorizations
    820183 - New authorization concept in BI
    I think the above material is sufficient but in case you face any issues feel free to revert back
    Reward suiatble points

Maybe you are looking for

  • Web Clips Doesn't Work

    I recently purchased a MacBook, running Mac OS X 10.5 Leopard. One cool feature I've discovered is Web Clips. I began using this feature right away. I made a Web Clip of the Apple Main Page, used it for a while, then deleted it. After this, I was una

  • Printing problems after installing Security Update 2015-002

    After installing Security Update 2015-002 on three separate computers on two different WiFi networks, printers on the network are losing their connections to the computers that can print to them. We have experienced this on a network running a Canon

  • Can't Paste Develop Settings to Multiple Photos

    I'm running Lightroom V3.2, and I have about 100 pictures I took at a concert.  I tweaked the exposure, brightness, etc, and the noise reduction, and copied the develop settings.  If I paste the settings onto any one photo, the paste works great.  Ho

  • Is there a way to sync bookmarks in Firefox with bookmarks in Safari?

    Is there a way to sync bookmarks in Firefox with bookmarks in Safari?

  • MMP Client Certificate Auth problem

    Hi, All! I can't configure clients cert auth through MMP. I'm using the most recent release of communicationsuite (7u2) . Proxy auth for clear imap using admin settings like StoreAdmin and StoreAdminPass works well. MMP for unencrypted IMAP works wel