MESSAGE_TYPE_X IN BI_CONT 7.03 INSTALLATION

Hi,
i am installing bi_cont 7.03, installation stuck at xpra_excution IN SAPKIBIII4 WITH  LOG BELOW
Runtime Errors         MESSAGE_TYPE_X
Date and Time          13.06.2009 14:15:25
     Short text
          The current application triggered a termination with a short dump.
     What happened?
          The current application program detected a situation which really
          should not occur. Therefore, a termination with a short dump was
          triggered on purpose by the key word MESSAGE (type X).
     What can you do?
          Note down which actions and inputs caused the error.
          To process the problem further, contact you SAP system
          administrator.
          Using Transaction ST22 for ABAP Dump Analysis, you can look
          at and manage termination messages, and you can also
          keep them for a long time.
     Error analysis
          Short text of error message:
          System error in program LRSDG_IOBJ_DB_READF40 and form REGULAR_IOBJ_GET_
          FOR_META (see long text)
          Long text of error message:
           Diagnosis
               This internal error is an intended termination resulting from a
               program state that is not permitted.
           Procedure
               Analyze the situation and inform SAP.
               If the termination occurred when you executed a query or Web
               template, or during interaction in the planning modeler, and if you
               can reproduce this termination, record a trace (transaction RSTT).
               For more information about recording a trace, see the documentation
               for the trace tool environment as well as SAP Note 899572.
          Technical information about the message:
          Message class....... "BRAIN"
          Number.............. 299
          Variable 1.......... "LRSDG_IOBJ_DB_READF40"
          Variable 2.......... "REGULAR_IOBJ_GET_FOR_META"
          Variable 3.......... " "
          Variable 4.......... " "
     How to correct the error
          Probably the only way to eliminate the error is to correct the program.
          If the error occures in a non-modified SAP program, you may be able to
          find an interim solution in an SAP Note.
          If you have access to SAP Notes, carry out a search with the following
          keywords:
          "MESSAGE_TYPE_X" " "
          "SAPLRSDG_IOBJ_DB_READ" or "LRSDG_IOBJ_DB_READF40"
          "REGULAR_IOBJ_GET_FOR_META"
          If you cannot solve the problem yourself and want to send an error
          notification to SAP, include the following information:
          1. The description of the current problem (short dump)
             To save the description, choose "System->List->Save->Local File
          (Unconverted)".
          2. Corresponding system log
             Display the system log by calling transaction SM21.
             Restrict the time interval to 10 minutes before and five minutes
          after the short dump. Then choose "System->List->Save->Local File
          (Unconverted)".
          3. If the problem occurs in a problem of your own or a modified SAP
          program: The source code of the program
             In the editor, choose "Utilities->More
          Utilities->Upload/Download->Download".
          4. Details about the conditions under which the error occurred or which
          actions and input led to the error.
     System environment
          SAP-Release 700
          Application server... "test"
          Network address...... "192.168.10.248"
          Operating system..... "Windows NT"
          Release.............. "5.2"
          Hardware type........ "4x AMD64 Level"
          Character length.... 8 Bits
          Pointer length....... 64 Bits
          Work process number.. 11
          Shortdump setting.... "full"
          Database server... "TEST"
          Database type..... "ORACLE"
          Database name..... "KIL"
          Database user ID.. "SAPKIL"
          Char.set.... "English_United State"
          SAP kernel....... 700
          created (date)... "May 31 2009 20:44:02"
          create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
          Database version. "OCI_10201_SHARE (10.2.0.1.0) "
          Patch level. 210
          Patch text.. " "
          Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
          SAP database version. 700
          Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
           NT 6.0"
          Memory consumption
          Roll.... 16128
          EM...... 62848560
          Heap.... 0
          Page.... 40960
          MM Used. 37341136
          MM Free. 12932688
     User and Transaction
          Client.............. 000
          User................ "DDIC"
          Language key........ "E"
          Transaction......... " "
          Transactions ID..... "85F657DE8ED8F1739C680015170F3C4D"
          Program............. "SAPLRSDG_IOBJ_DB_READ"
          Screen.............. "SAPMSSY0 1000"
          Screen line......... 6
     Information on where terminated
          Termination occurred in the ABAP program "SAPLRSDG_IOBJ_DB_READ" - in
           "REGULAR_IOBJ_GET_FOR_META".
          The main program was "RDDEXECU ".
          In the source code you have the termination point in line 31
          of the (Include) program "LRSDG_IOBJ_DB_READF40".
          The program "SAPLRSDG_IOBJ_DB_READ" was started as a background job.
          Job Name....... "RDDEXECL"
          Job Initiator.. "DDIC"
          Job Number..... 14151900
     Source Code Extract
     Line     SourceCde
         1     ----
         2     *   INCLUDE LRSDG_IOBJ_DB_READF40                                      *
         3     ----
         4     
         5     
         6     ----
         7     *      Form  REGULAR_IOBJ_GET_FOR_META
         8     ----
         9     *    read a regular InfoObject as Meta InfoObject
        10     ----
        11     *   --> I_INFOCUBE   InfoCube
        12     *   --> I_IOBJNM     InfoObject
        13     *   <-> C_T_COB_PRO  InfoCube specific InfoObject properties
        14     ----
        15     FORM regular_iobj_get_for_meta USING    i_infocube   TYPE rsinfocube
        16                                             i_iobjnm     TYPE rsiobjnm
        17                                    CHANGING c_t_cob_pro  TYPE rsd_t_cob_pro.
        18     
        19       DATA: l_s_cob_pro  TYPE rsdcobpro.
        20     
        21       CALL FUNCTION 'RSD_IOBJ_INCL_ATR_NAV_GET'
        22         EXPORTING
        23           i_iobjnm       = i_iobjnm
        24           i_objvers      = rs_c_objvers-active
        25         IMPORTING
        26           e_s_cob_pro    = l_s_cob_pro
        27         EXCEPTIONS
        28           iobj_not_found = 1
        29           illegal_input  = 2.
        30       IF sy-subrc <> 0.
     >>>>>         MESSAGE x299(brain) WITH 'LRSDG_IOBJ_DB_READF40'
        32                                  'REGULAR_IOBJ_GET_FOR_META'.
        33       ENDIF.
        34     
        35     * time charact --> time dimension / In BEX not visible
        36       IF i_iobjnm = rsd_c_chanm-date OR
        37          i_iobjnm = rsd_c_timnm-calday.
        38         l_s_cob_pro-chasel     = rsd_c_chasl-not_allowed.
        39         l_s_cob_pro-chanav     = rsd_c_chanv-not_allowed.
        40     
        41     **   from 3.0 these InfoObjects are marked as META objects
        42     *    l_s_cob_pro-iobjtp     = rsd_c_objtp-meta.
        43     *    the olap processor uses 0DATE / 0CALDAY as default for exceptional aggregation -
        44     *    therefore it has to be in the cobpro
        45     *    but it must not be of type META, since then day of validity logic
        46     *    does not work
        47     *    solution for 3.0: OLAP processor uses the flags CHASEL and CHANAV to determine
        48     *    if 0DATE / 0CALDAY is part of the infocube
        49     
        50     *   leave dimension empty
     Contents of system fields
     Name     Val.
     SY-SUBRC     1
     SY-INDEX     0
     SY-TABIX     0
     SY-DBCNT     0
     SY-FDPOS     0
     SY-LSIND     0
     SY-PAGNO     0
     SY-LINNO     1
     SY-COLNO     1
     SY-PFKEY     
     SY-UCOMM     
     SY-TITLE     Execute Post-Import Methods and XPRAs for Transport Request
     SY-MSGTY     X
     SY-MSGID     BRAIN
     SY-MSGNO     299
     SY-MSGV1     LRSDG_IOBJ_DB_READF40
     SY-MSGV2     REGULAR_IOBJ_GET_FOR_META
     SY-MSGV3     
     SY-MSGV4     
     SY-MODNO     0
     SY-DATUM     20090613
     SY-UZEIT     141519
     SY-XPROG     SAPLSYST
     SY-XFORM     SYSTEM_HOOK_OPEN_DATASET
     Active Calls/Events
     No.   Ty.          Program                             Include                             Line
           Name
        16 FORM         SAPLRSDG_IOBJ_DB_READ               LRSDG_IOBJ_DB_READF40                  31
           REGULAR_IOBJ_GET_FOR_META
        15 FUNCTION     SAPLRSDG_IOBJ_DB_READ               LRSDG_IOBJ_DB_READU32                 101
           RSD_ALL_META_IOBJ_GET
        14 METHOD       CL_RSD_DTA====================CP    CL_RSD_DTA====================CM021   658
           CL_RSD_DTA=>BUILD_SNG_DTA_PRO
        13 METHOD       CL_RSD_DTA====================CP    CL_RSD_DTA====================CM00H    90
           CL_RSD_DTA=>BUILD_DTA_PRO
        12 METHOD       CL_RSD_DTA====================CP    CL_RSD_DTA====================CM00I   110
           CL_RSD_DTA=>UPDATE_DTA_BUF
        11 METHOD       CL_RSD_CUBE===================CP    CL_RSD_CUBE===================CM006   197
           CL_RSD_CUBE=>IF_RSD_DTA~DTA_GET_INFO
        10 METHOD       CL_RSD_DTA====================CP    CL_RSD_DTA====================CM001   157
           CL_RSD_DTA=>IF_RSD_DTA~DTA_GET_INFO
         9 FORM         SAPLRSDI                            LRSDIF20                               63
           COB_GET_FROM_BUFFER
         8 FUNCTION     SAPLRSDI                            LRSDIU05                               42
           RSD_COB_PRO_GET
         7 FORM         SAPLRSDDK6                          LRSDDK6F01                            342
           CONVERT_A_TO_M_VERSION
         6 FUNCTION     SAPLRSDDK6                          LRSDDK6U06                             89
           RS_DAGR_AFTER_IMPORT
         5 FUNCTION     SAPLRSVERS                          LRSVERSU07                            102
           RS_AFTER_IMPORT_D
         4 FORM         SAPLSCTS_EXE_EXP                    LSCTS_EXE_EXPF02                      351
           CALL_IMP_METHODS_IN_CLIENT
         3 FORM         SAPLSCTS_EXE_EXP                    LSCTS_EXE_EXPF02                       87
           CALL_IMP_METHODS
         2 FUNCTION     SAPLSCTS_EXE_EXP                    LSCTS_EXE_EXPU02                      103
           TRINT_CALL_AFTER_IMP_METHOD
         1 EVENT        RDDEXECU                            RDDEXECU                              168
           START-OF-SELECTION
PLEASE HELP ME OUT TO SOLVE IT  I HAVE GONE THROUGH SIMILAR POST and the notes there is corrction but how to implement the correction i dont know
sunil

hi,
i would request yiu all to pay attention on this and help me out
CALL FUNCTION 'RSD_IOBJ_INCL_ATR_NAV_GET'
    EXPORTING
      i_iobjnm       = i_iobjnm
      i_objvers      = rs_c_objvers-active
    IMPORTING
      e_s_cob_pro    = l_s_cob_pro
    EXCEPTIONS
      iobj_not_found = 1
      illegal_input  = 2.
  IF sy-subrc <> 0.
    MESSAGE x299(brain) WITH 'LRSDG_IOBJ_DB_READF40'
                             'REGULAR_IOBJ_GET_FOR_META'.
  ENDIF.
+ time charact --> time dimension / In BEX not visible+*
  IF i_iobjnm = rsd_c_chanm-date OR
     i_iobjnm = rsd_c_timnm-calday.
    l_s_cob_pro-chasel     = rsd_c_chasl-not_allowed.
    l_s_cob_pro-chanav     = rsd_c_chanv-not_allowed.
+*   from 3.0 these InfoObjects are marked as META objects+*
+    l_s_cob_pro-iobjtp     = rsd_c_objtp-meta.+*
+    the olap processor uses 0DATE / 0CALDAY as default for exceptional aggregation -+*
+    therefore it has to be in the cobpro+*
+    but it must not be of type META, since then day of validity logic+*
+    does not work+*
+    solution for 3.0: OLAP processor uses the flags CHASEL and CHANAV to determine+*
+    if 0DATE / 0CALDAY is part of the infocube+**
PLEASE HELP WITH SOME WORK AROUND
sanjeev

Similar Messages

  • Error to install Add-On BI Content (TCode SAINT)

    I am trying to install "BI Content" from Tx SAINT but I get the following message
    The installation was stopped, since an error occurred during the phase CHECK_REQUIREMENTS, which the Add-On Installation Tool is unable to
    resolve without your input.
    After you have corrected the cause of the error, continue with the import by choosing Continue in the queue display.
    The following details help you to analyze the problem:
    - Error in phase: CHECK_REQUIREMENTS
    - Reason for error: QUEUE_NOT_EMPTY
    - Return code:
    - Error message:
    Notes on phase CHECK_REQUIREMENTS
    Not how to solve this problem in order to complete the installation, someone can give me some information about it.
    I do not have any connected system, I have just finished installing "BW"
    I'm doing at the moment the same configuration, so that they can the Client Copy and then connect with R3
    check the "TCode RSA7" and this is empty, which may be more?
    I do not want to have to reinstall.
    This installation was done on a machine that was running BW 7, but due to problems blocking accounts are uninstall. It was possible to make a new facility but presents the problem that leaves no install "Business Intelligence Content 7.03" I'm doing as the "Note 916834 - BI_CONT 7.03: Installation and upgrade information" through the "TCode SAINT", but achieving do this does not help anything installation.
    The operating system is Windows 2003 Server and the database SQL Server 2000!!
    After the test load "Add-On BI Content", try loading the corresponding Support Packages and tells me the same mistake, try to do that from the TCode SPAM, someone can give me some indication on how to solve this problem at the moment I am unable to BW work.
    C:\usr\sap\BWD\SYS\exe\uc\NTI386>tp
    This is tp version 370.00.09 (release 700, unicode enabled)
    EXPORT: tp export <TR> export <TA>
    IMPORT: tp import <TR>|ALL <SAPSID> import <TA> into <SAPSID>
    PUT: tp put <SAPSID> put of SID
    Utility function:
    tp addtobuffer <TR> <SAPSID> add <TR> to buffer of <SAPSID>
    For more information call tp with argument 'help'
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0203
    tp finished with return code: 203
    meaning:
    wrong syntax in tp call
    Log to the load:
               Installation/Upgrade of the Add-on BI_CONT rel.703 (21.07.2008, 17:09:27)
               The current OCS Queue consists of:
                  001: SAPKIBIIIH - Installation Package for BI_CONT Release 703
               Display notes, which should be considered before the start of the import
                 Note 916834 for OCS Package SAPKIBIIIH (Password is required)
               Correct password for OCS Package SAPKIBIIIH, note 916834 was given
               Saving the current OCS Queue (21.07.2008, 17:09:58)
                  001: SAPKIBIIIH - Installation Package for BI_CONT Release 703
               Import of the current OCS Queue (21.07.2008, 17:09:58)
               The current OCS Queue consists of:
                  001: SAPKIBIIIH - Installation Package for BI_CONT Release 703
               Import phase 'PROLOGUE' (21.07.2008, 17:09:58)
               Import phase 'PROLOGUE' was successfully finished (21.07.2008, 17:10:00)
               Import phase 'CHECK_REQUIREMENTS' (21.07.2008, 17:10:00)
               The tp buffer contains old, not completely processed OCS Packages
               Interrupt the import due to an error situation (21.07.2008, 17:10:02)
               Display detailed informations concerning the error in phase 'CHECK_REQUIREMENTS'
               Abort the import due to an error situation (21.07.2008, 17:10:09)
    thanks
    Edited by: Manuel Sandoval on Jul 21, 2008 9:38 PM
    Edited by: Manuel Sandoval on Jul 21, 2008 10:12 PM

    Try reset the queue status then delete the queue.  I think you can use SPAM for this, not sure if SAINT has the ability to do it.
    Aftewards, try:
    1.  Lock all users in your system, cycle the system to ensure all users are logged off.
    2.  Disable the batch user as well, to make sure no jobs are running.
    3.  Backup the input buffer file (should bein the trans\buffer folder).  After backing up the file, delete the file.
    4.  Goto STMS and check the import buffer, press F5.  The buffer should be empty now.
    5.  Return to SAINT and reimport the component, it should be successful now.

  • 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

  • BI Content Extension for BI CONT 7.05

    Hi all,
    I am instaling NW 7.0 EHP1, as part of this installatoin we had install BI_CONT 7.05 installation.
    We want as part of this installatoin install BI_CONT_XT 7.05 installation too.
    I had download suport packages BI_CONT_XT sp 01 to sp 7.05 from market plads.
    My problem is SAINT -> CRM Add-On Manager can not recognize this packages from /trans/EPS/in.
    Do I need to download installation packages for BI_CONT_XT or is ok with suport packages?
    I did find an installation packages, but that is for ehp2 and not EHP1.
    My installation is
    I have NW 7.0 ehp1
    BW SAPKW70110
    Basis SAPKB70110
    Thanks

    Hi,
    //// My problem is SAINT -> CRM Add-On Manager can not recognize this packages from /trans/EPS/in.
    Is your system a Solution Manager system or CRM system ?
    Regards,
    Deepak Kori

  • Upgrading from 3.5 to 7.0

    hi friends,
    what are errors will be available when i upgrade from 3.5 to bi 7.0
    thanking u
    suneel.

    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 Shoot authorizations
    820183 - New authorization concept in BI
    Regards
    Naga

  • Test plan for upgrading the support packs

    Dear friends,
    We are going to upgrade the BI system with SP18.
    Please let me know the impact system will be facing with this upgrade and the test plan to take care after the upgrade.
    With Regards
    Neetu
    Edited by: Siegfried Szameitat on Oct 29, 2008 8:48 AM

    Hi,
    it will helps hopeful,
    Upgradation steps:
    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 u2013 Add. Info: Upgrade to SAP NW 2004s ABAP Oracle
    820062 - Oracle Database 10g: Patchsets/Patches for 10.1.0 
    839574 u2013 Oracle database 10g: Stopping the CSS services ocssd.bin 
    830576 u2013 Parameter recommendations for Oracle 10g 
    868681 u2013 Oracle Database 10g: Database Release Check 
    836517 u2013 Oracle Database 10g: Environment for SAP Upgrade 
    853507 u2013 Usage Type BI for SAP Netwaevers 2004s 
    847019 - BI_CONT 7.02: Installation and Upgrade Information 
    818322 u2013 Add. Info: Upgrade to SAP NW 2004s ABAP 
    813658 - Repairs for upgrades to products based on SAP NW 2004s AS 
    855382 u2013 Upgrade to SAP SEM 6.0 
    852008 u2013 Release restrictions for SAP Netweaver 2004s 
    884678 - System info shows older release than the deployed one 
    558197 u2013 Upgrade hangs in PARCONV_UPG 
    632429 u2013 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 u2013 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               
    Regards,
    Deva Reddy

  • Installation issue with BI_CONT 353 using SAINT

    I am trying to install BI_CONT 3.5.3 using SAINT tool on SAP system (ABAP+Java with Oracle) on AIX 5.3.
    The SAR archive is SAPKIBIFIH, and the package file is: CSN0120061532_0020014.PAT.
    However, the following error was generated during the installation process:
    Error in phase: IMPORT_PROPER
    Reason for error: TP_STEP_FAILURE
    Return code: 0012
    Error message: OCS Package SAPKIBIFIR, tp step "I", return code 0012
    The detailed error info from log file "SAPIIBIFIR.SP1" is shown below:
    4 ETW000  [dev trc     ,00000]  Tue Nov 22 10:27:10 2005                         19479687  19.479687
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => Error in stmt_execute()                  52  19.479739
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => ORA-1653 occurred when executing SQL statement (parse error offset=0)
    4 ETW000                                                                              55  19.479794
    4 ETW000  [dev trc     ,00000]  sc_p=0x1110f65a0,no=40,idc_p=0x11110e450,con=0,act=1,slen=66,smax=256,#vars=6,stmt=0x112a735e0,table=BDSCONT8                     
    4 ETW000                                                                              78  19.479872
    4 ETW000  [dev trc     ,00000]  INSERT INTO "BDSCONT8" VALUES( :A0 , :A1 , :A2 , :A3 , :A4 , :A5 );
    4 ETW000                                                                              72  19.479944
    4 ETW000  [dev trc     ,00000]  sc_p=0x1110f65a0,no=40,idc_p=0x11110e450,con=0,act=1,slen=66,smax=256,#vars=6,stmt=0x112a735e0,table=BDSCONT8                     
    4 ETW000                                                                             207  19.480151
    4 ETW000  [dev trc     ,00000]  prep=0,lit=0,nsql=0,lobret=0,#exec=2,dbcnt=23,upsh_p=(nil),ocistmth_p=0x112a74048
    4 ETW000                                                                              51  19.480202
    4 ETW000  [dev trc     ,00000]  IN : cols=6,rmax=21,xcnt=21,rpc=0,rowi=0,rtot=42,upto=4294967295,rsize=2984,vmax=32,bound=1,iobuf_p=0x1111a4e00,vda_p=0x112a75940
    4 ETW000                                                                              56  19.480258
    4 ETW000  [dev trc     ,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    4 ETW000                                                                              67  19.480325
    4 ETW000  [dev trc     ,00000]  OUT: cols=0,rmax=0,xcnt=0,rpc=0,rowi=0,rtot=0,upto=0,rsize=0,vmax=0,bound=0,iobuf_p=(nil),vda_p=(nil)
    4 ETW000                                                                              53  19.480378
    4 ETW000  [dev trc     ,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    4 ETW000                                                                              46  19.480424
    4 ETW000  [dev trc     ,00000]  INSERT INTO "BDSCONT8" VALUES( :A0 , :A1 , :A2 , :A3 , :A4 , :A5 );
    4 ETW000                                                                              45  19.480469
    4 ETW000  [dbtrtab     ,03948]  ***LOG BY4=>sql error 1653   performing INS on table BDSCONT8   [dbtrtab#1 @ 3948]
    4 ETW000                                                                             123  19.480592
    4 ETW000  [dbtrtab     ,03948]  ***LOG BY0=>ORA-01653: unable to extend table SAPDS1.BDSCONT8 by 128 in tablespace PSAPDS1
    4 ETW000                        ORA-27059: skgfrsz: could not reduce file size        62  19.480654
    4 ETW000                        IBM AIX RISC System/6000 Error: 27: File too large
    4 ETW000                        Additional information: 1
    4 ETW000                        ORA-27059: skgfrsz: could not reduce file size
    4 ETW000                        IBM AIX RISC System/6000 Error: 27: File too large
    4 ETW000                        Additional information: 1
    4 ETW000                        ORA-27059: skgfrsz: could not reduce file size
    4 ETW000                        IBM AIX RISC System/6000 Error: 27: File too large
    4 ETW000                        Additional information: 1 [dbtrtab#1 @ 3948]
    2EETW000 sap_dext called with msgnr "1":
    2EETW000 -
    db call info -
    2EETW000 function:   db_xrtab
    2EETW000 fcode:      RT_MI_LOAD
    2EETW000 tabname:    BDSCONT8                     
    2EETW000 len (char): 1490
    2EETW000 key:        IRA9BC02E507A0D411BCB90800060DFEA0
    2EETW000 retcode:    1
    2EETW125 SQL error "1653" during "" access: "ORA-01653: unable to extend table SAPDS1.BDSCONT8 by 128 in tablespace PSAPDS1
    3WETP000 ORA-27059: skgfrsz: could not reduce file size
    3WETP000 IBM AIX RISC System/6000 Error: 27: File too large
    3WETP000 Additional information: 1
    3WETP000 ORA-27059: skgfrsz: could not reduce file size
    3WETP000 IBM AIX RISC System/6000 Error: 27: File too large
    3WETP000 Additional information: 1
    3WETP000 ORA-27059: skgfrsz: could not reduce file size
    3WETP000 IBM AIX RISC System/6000 Error: 27: File too large
    3WETP000 Additional information: 1"
    4 ETW000 ROLLBACK (44879026).
    1 ETP154 MAIN IMPORT
    1 ETP110 end date and time   : "20051122102710"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    I am not so sure how to handle the above errors, and any suggestions and solutions will be highly appreciated.
    Thanks.
    Jack

    Hi,
    "(...)ORA-01653: unable to extend table SAPDS1.BDSCONT8(...)"
    It looks that you have db problem. Do you have enough space ?
    Krzys

  • The Add-on installation terminated during phase XPRA_EXECUTION BI_CONT 703

    Program terminated (job: RDDEXECL, no.: 16333200)
    <ST22 >
    SYNTAX_ERROR
    Syntax error in program "CL_RSTRAN_TRFN_TPL============CP ".
    Error in the ABAP Application Program
    The current ABAP program "CL_RSBK_DTP_DATABASE==========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program
    "CL_RSTRAN_TRFN_TPL============CP " in include
    "CL_RSTRAN_TRFN_TPL============CM00B " in
    line 112:
    "The data object "L_S_TRAN" does not have a component called "ALL_FIELD"
    "S"."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "CL_RSBK_DTP_DATABASE==========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.

    Hi,
    Post us the import log. Try executing /$SYNC in the command field to reset the buffer and then retry the SP updation.
    Hope this solves ur issue.
    Regards,
    Varadharajan M

  • Error in Support Package Installation

    Hi ,
    I am trying to install "SAPKIBIIIH" in SAP BI using Tcode :SAINT.
    OCS Package :SAPKIBIIIH
    Package Type :Installation
    Software Comp:BI_CONT
    Release : 703
    After giving the OSSNOTE PASSWORD for SAPKIBIIIH, the installation is starting but after some time it is failing as :
    Error in phase    : Disassemble
    Reason for Error : PATCH_FILE_READ_ERROR
    Return Code       :12
    I have uncar the support pack through CMD, and kept the .ATT and .PAT files in \eds\in folder.
    I tried all types of possibilities...
    I am using Add-on Installation Tool version 7.00/0020 -for "saint"
    Please help...
    Thanks in advance.
    Regards,
    Vamsi
    Edited by: Vamsidhar A.V. on Oct 19, 2008 5:58 PM

    Hi Vamshidhar,
    Check whether the option of disassembling data files is switched on.
    Go to transaction SPAM
    Go to Extra --> Settings
    Check whether the user <sid>adm has write authorization for the
    directory /usr/sap/trans/cofiles.
    The Add-On Installation Tool requires that the Change and Transport
    System (CTS) be configured correctly.
    Regards,
    Anil Kumar CH

  • SRM BI Content Installation

    Hi Experts,
    I need data flow of Objects from SRM(R/3) to BI SRM data target.
    If any body involved in this. Please share the SRM BI Content Installation procedure apart from help.sap.com.
    Advance Thanks,
    BBC

    Hi,
    1. Down load BI_CONT (Depending on version) from SMP(http://service.sapc.om/downloads) OR You can check with DVDs given by SAP into SRM server.
    2. Use Tcode SAINT (Latest SPAM/SAINT version) and Goto Application server-->Down laod BI_CONT in to SRM server
    3. Select BI_CONT proceed with NEXT steps as usual(Do not change anything here).
    Regards,
    Srini Nookala

  • Internal BW inside the SRM installation

    Hello All,
    I'm trying to figure out why SAP has installed a BW inside the SRM system.
    I have succeeded in replicating data sources into this internal BW but I have failed in installing the business content.
    It seems like there is no business content.
    Our basis guy told me that in the SRM installation, there is no special BI_CONT component like in a regular BW installation.
    What am I  missing here ?
    Any clarifications and explanations will be highly appreciated.
    Thanks in advance, Amir.

    Ey Guys whats up...
    I'll use the same BW BC version as you, the basis guy already installed, the bw guy activated, loads, etc..  
    Now its my turn, and thus I have this question:
    - Is there any Business Package for BW-SRM reports ? (In order to see them in SAP EP).
    Or
    - What is the SRM standard way to show to the endusers these reports ?
    Thank you ! =)
    Regards,
    Diego

  • Component BI_CONT: SP level 0001 is incorrect, expected 6

    Hello!
    I faced with problem after installed  the Solution Manager 7.01 (with SP26)
    In step INSTALLATION CHECK on the Diagnostics Prerequisites I get status "Activity Error" with explanation
    Component BI_CONT: SP level 0001 is incorrect, expected 6
    May be somebody know what I need do?
    Or I can do some steps to resolved this problem?
    Best regards
    Dmitry Zakharenkov

    Hi
    Please verify the solution manager met all the prerequest specified in the note for ur SP level
    [Note 1274287 - End-to-End Diagnostics 7.0 EHP1 SP18 to SP26|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1274287]
    if no, please make them equal to the note
    and if yes, you can check the fix in the note avoid the activity error
    [ Note 1297598 - Fix in prerequisite|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1297598]
    Jansi

  • SAP Integration Kit installation - BW Publisher parameters

    Hi,
    We are working on an BO GRC RM 3.0 scenario (Windows/SQL Server). As per architecture requirements we are currently installing BOBJ Integration Kit for SAP. However the following doubt comes up. As per architecture requirement also, and as it was defined for our scenario there is no need for an BI system (AS JAVA was installed only as EP usage type) if the reporting is going to be used with BOE Crystal. What we need there, is to install and BOBJ SAP Integration kit on BOE XI 3.1 server and to import Crystal transport files in AS ABAP (SAP_ABA, SAP_BASIS, PI_BASIS, SAP_BW).
    During the Integration Kit installation process we are being prompted for BW Publisher parameters where an RFc to a BW system is required. As mentioned earlier, we donu2019t have an BW system since BOE Crystal will be used instead of WebDynpro ABAP ListViewer...Are we using the incorrect Integration Kit? Should I install BI_Content Add-on installed on AS ABAP even when reporting is going to be used with Crystal Report?
    Hoping being clear enough, please let me know if I can proceed with Integration kit installation in this way or should I have some other precautions for this particular solution implementation.
    Thanks and best regards.

    Hi,
    in case you do not have SAP BW as part of the landscape then there is no need to install the publishing component
    Ingo

  • HR Renewal 1.0 Installation problem

    Hi,
    Our basis guy recently installed HR Renewal 1.0 on our system using the Administrator's Guide. We are able to load up the landing page but got an error that the SAPUI5 library was missing. We noticed that it was located somewhere else then in the HTML page indicated. When relocating it we could see the landing page but not much is working. The look and feel is there but when you click down on something it doesn't work.
    Now trying to configure the landing page i was looking for the path Personnel management -> Personnel & Organization -> Landing Page but couldn't find this anywhere.
    I thought that there was some sort of installation missing (I am not a basis consultant) but according to our basis guy everything should be installed correctly.
    It looks like everything is in a different place then the guide indicates or is missing.
    Does anyone have any ideas on how we can fix this and how to get the landing page to work properly?
    Thank you!

    Hi Samuli,
    Thank you for your reply!
    I'm looking at different Administrator Guides and notice a difference in the last two. It might be that we are on an older version and that's why I can't see the IMG node?
    Anyway, I cannot find the business function HCM_PAO_CI_2 but there is an HCM_PAO_CI_1 which isn't activated.
    Netweaver Gateway is indeed installed in the same system as HCM.
    List of installed components:
    SAP_BASIS    731    0005    SAPKB73105
    SAP_ABA    731    0005    SAPKA73105
    PI_BASIS    731    0005    SAPK-73105INPIBASIS
    ST-PI    2008_1_710    0007    SAPKITLRE7
    BI_CONT    747    0002    SAPK-74702INBICONT
    GW_CORE    200    0006    SAPK-20006INGWCORE
    IW_BEP    200    0006    SAPK-20006INIWBEP
    SAP_BW    731    0005    SAPKW73105
    UI2_700    100    0002    SAPK-10002INUI2700
    UI2_701    100    0002    SAPK-10002INUI2701
    UI2_702    100    0002    SAPK-10002INUI2702
    UI2_731    100    0002    SAPK-10002INUI2731
    UI2_FND    100    0002    SAPK-10002INUI2FND
    UI2_SRVC    100    0002    SAPK-10002INUI2SRVC
    UI5_731    100    0002    SAPK-10002INUI5731
    UISAPUI5    100    0002    SAPK-10002INUISAPUI5
    UI_INFRA    100    0002    SAPK-10002INUIINFRA
    IW_FND    250    0006    SAPK-25006INIWFND
    IW_GIL    100    0002    SAPK-10002INIWGIL
    IW_HDB    100    0002    SAPK-10002INIWHDB
    IW_PGW    100    0002    SAPK-10002INIWPGW
    IW_SPI    100    0002    SAPK-10002INIWSPI
    MDG_FND    731    0005    SAPK-73105INMDGFND
    SAP_AP    700    0028    SAPKNA7028
    SAP_BS_FND    731    0005    SAPK-73105INSAPBSFND
    WEBCUIF    731    0005    SAPK-73105INWEBCUIF
    MDG_APPL    606    0005    SAPK-60605INMDGAPPL
    SAP_APPL    606    0005    SAPKH60605
    SAP_HR    604    0057    SAPKE60457
    SAP_HRCAR    604    0057    SAPK-60457INSAPHRCAR
    SAP_HRCAT    604    0057    SAPK-60457INSAPHRCAT
    SAP_HRCAU    604    0057    SAPK-60457INSAPHRCAU
    SAP_HRCBE    604    0057    SAPK-60457INSAPHRCBE
    SAP_HRCBR    604    0057    SAPK-60457INSAPHRCBR
    SAP_HRCCA    604    0057    SAPK-60457INSAPHRCCA
    SAP_HRCCH    604    0057    SAPK-60457INSAPHRCCH
    SAP_HRCCL    604    0057    SAPK-60457INSAPHRCCL
    SAP_HRCCN    604    0057    SAPK-60457INSAPHRCCN
    SAP_HRCDE    604    0057    SAPK-60457INSAPHRCDE
    SAP_HRCDK    604    0057    SAPK-60457INSAPHRCDK
    SAP_HRCES    604    0057    SAPK-60457INSAPHRCES
    SAP_HRCFI    604    0057    SAPK-60457INSAPHRCFI
    SAP_HRCFR    604    0057    SAPK-60457INSAPHRCFR
    SAP_HRCGB    604    0057    SAPK-60457INSAPHRCGB
    SAP_HRCHK    604    0057    SAPK-60457INSAPHRCHK
    SAP_HRCID    604    0057    SAPK-60457INSAPHRCID
    SAP_HRCIE    604    0057    SAPK-60457INSAPHRCIE
    SAP_HRCIN    604    0057    SAPK-60457INSAPHRCIN
    SAP_HRCIT    604    0057    SAPK-60457INSAPHRCIT
    SAP_HRCJP    604    0057    SAPK-60457INSAPHRCJP
    SAP_HRCKR    604    0057    SAPK-60457INSAPHRCKR
    SAP_HRCMX    604    0057    SAPK-60457INSAPHRCMX
    SAP_HRCMY    604    0057    SAPK-60457INSAPHRCMY
    SAP_HRCNL    604    0057    SAPK-60457INSAPHRCNL
    SAP_HRCNO    604    0057    SAPK-60457INSAPHRCNO
    SAP_HRCNZ    604    0057    SAPK-60457INSAPHRCNZ
    SAP_HRCPH    604    0057    SAPK-60457INSAPHRCPH
    SAP_HRCPT    604    0057    SAPK-60457INSAPHRCPT
    SAP_HRCQA    604    0057    SAPK-60457INSAPHRCQA
    SAP_HRCRU    604    0057    SAPK-60457INSAPHRCRU
    SAP_HRCSE    604    0057    SAPK-60457INSAPHRCSE
    SAP_HRCSG    604    0057    SAPK-60457INSAPHRCSG
    SAP_HRCTH    604    0057    SAPK-60457INSAPHRCTH
    SAP_HRCTW    604    0057    SAPK-60457INSAPHRCTW
    SAP_HRCUN    604    0057    SAPK-60457INSAPHRCUN
    SAP_HRCUS    604    0057    SAPK-60457INSAPHRCUS
    SAP_HRCVE    604    0057    SAPK-60457INSAPHRCVE
    SAP_HRCZA    604    0057    SAPK-60457INSAPHRCZA
    SAP_HRGXX    604    0057    SAPK-60457INSAPHRGXX
    SAP_HRRXX    604    0057    SAPK-60457INSAPHRRXX
    EA-IPPE    400    0022    SAPKGPID22
    EA-APPL    606    0005    SAPK-60605INEAAPPL
    EA-DFPS    600    0022    SAPKGPDD22
    EA-FINSERV    600    0023    SAPKGPFD23
    EA-GLTRADE    600    0022    SAPKGPGD22
    EA-HR    607    0008    SAPK-60708INEAHR
    EA-HRCAR    607    0008    SAPK-60708INEAHRCAR
    EA-HRCAT    607    0008    SAPK-60708INEAHRCAT
    EA-HRCAU    607    0008    SAPK-60708INEAHRCAU
    EA-HRCBE    607    0008    SAPK-60708INEAHRCBE
    EA-HRCBR    607    0008    SAPK-60708INEAHRCBR
    EA-HRCCA    607    0008    SAPK-60708INEAHRCCA
    EA-HRCCH    607    0008    SAPK-60708INEAHRCCH
    EA-HRCCL    607    0008    SAPK-60708INEAHRCCL
    EA-HRCCN    607    0008    SAPK-60708INEAHRCCN
    EA-HRCDE    607    0008    SAPK-60708INEAHRCDE
    EA-HRCDK    607    0008    SAPK-60708INEAHRCDK
    EA-HRCES    607    0008    SAPK-60708INEAHRCES
    EA-HRCFI    607    0008    SAPK-60708INEAHRCFI
    EA-HRCFR    607    0008    SAPK-60708INEAHRCFR
    EA-HRCGB    607    0008    SAPK-60708INEAHRCGB
    EA-HRCHK    607    0008    SAPK-60708INEAHRCHK
    EA-HRCID    607    0008    SAPK-60708INEAHRCID
    EA-HRCIE    607    0008    SAPK-60708INEAHRCIE
    EA-HRCIN    607    0008    SAPK-60708INEAHRCIN
    EA-HRCIT    607    0008    SAPK-60708INEAHRCIT
    EA-HRCJP    607    0008    SAPK-60708INEAHRCJP
    EA-HRCKR    607    0008    SAPK-60708INEAHRCKR
    EA-HRCMX    607    0008    SAPK-60708INEAHRCMX
    EA-HRCMY    607    0008    SAPK-60708INEAHRCMY
    EA-HRCNL    607    0008    SAPK-60708INEAHRCNL
    EA-HRCNO    607    0008    SAPK-60708INEAHRCNO
    EA-HRCNZ    607    0008    SAPK-60708INEAHRCNZ
    EA-HRCPH    607    0008    SAPK-60708INEAHRCPH
    EA-HRCPT    607    0008    SAPK-60708INEAHRCPT
    EA-HRCQA    607    0008    SAPK-60708INEAHRCQA
    EA-HRCRU    607    0008    SAPK-60708INEAHRCRU
    EA-HRCSE    607    0008    SAPK-60708INEAHRCSE
    EA-HRCSG    607    0008    SAPK-60708INEAHRCSG
    EA-HRCTH    607    0008    SAPK-60708INEAHRCTH
    EA-HRCTW    607    0008    SAPK-60708INEAHRCTW
    EA-HRCUN    607    0008    SAPK-60708INEAHRCUN
    EA-HRCUS    607    0008    SAPK-60708INEAHRCUS
    EA-HRCVE    607    0008    SAPK-60708INEAHRCVE
    EA-HRCZA    607    0008    SAPK-60708INEAHRCZA
    EA-HRGXX    607    0008    SAPK-60708INEAHRGXX
    EA-HRRXX    607    0008    SAPK-60708INEAHRRXX
    EA-PS    600    0022    SAPKGPPD22
    EA-RETAIL    600    0022    SAPKGPRD22
    FINBASIS    600    0022    SAPK-60022INFINBASIS
    ECC-DIMP    600    0022    SAPK-60022INECCDIMP
    ERECRUIT    606    0005    SAPK-60605INERECRUIT
    FI-CA    600    0022    SAPK-60022INFICA
    FI-CAX    600    0022    SAPK-60022INFICAX
    HR-CEE    110_604    0054    SAPK-60454INHRCEE
    HR-CEECBG    110_604    0054    SAPK-60454INHRCEECBG
    HR-CEECCO    110_604    0054    SAPK-60454INHRCEECCO
    HR-CEECCZ    110_604    0054    SAPK-60454INHRCEECCZ
    HR-CEECGR    110_604    0054    SAPK-60454INHRCEECGR
    HR-CEECHR    110_604    0054    SAPK-60454INHRCEECHR
    HR-CEECHU    110_604    0054    SAPK-60454INHRCEECHU
    HR-CEECPL    110_604    0054    SAPK-60454INHRCEECPL
    HR-CEECRO    110_604    0054    SAPK-60454INHRCEECRO
    HR-CEECSI    110_604    0054    SAPK-60454INHRCEECSI
    HR-CEECSK    110_604    0054    SAPK-60454INHRCEECSK
    HR-CEECTR    110_604    0054    SAPK-60454INHRCEECTR
    HR-CEECUA    110_604    0054    SAPK-60454INHRCEECUA
    HR-CEEGXX    110_604    0000         -
    HR-CEERXX    110_604    0000         -
    INSURANCE    600    0022    SAPK-60022ININSURANC
    IS-CWM    600    0022    SAPK-60022INISCWM
    IS-H    600    0032    SAPK-60032INISH
    IS-M    600    0022    SAPK-60022INISM
    IS-OIL    600    0022    SAPK-60022INISOIL
    IS-PS-CA    600    0022    SAPK-60022INISPSCA
    IS-UT    600    0022    SAPK-60022INISUT
    IW_CBS    200    0006    SAPK-20006INIWCBS
    IW_CNT    200    0006    SAPK-20006INIWCNT
    IW_SCS    200    0006    SAPK-20006INIWSCS
    LSOFE    600    0022    SAPK-60022INLSOFE
    SEM-BW    600    0022    SAPKGS6022
    BP-CANW    731V3    0000         -
    BP-ERP    606V3    0000    
    BP-SOLBLD    70V7    0000    

  • XI and R/3 Installation on One System

    Hi,
      I am new To XI and I want to install XI and R/3 in My Local System. Can i install both in one system (OS)? If yes, what is the minimum requirement for this?
      If any one have did this, please help me.
    Thanks,
    Sridhar

    Hi Sridhar,
    Download this Doc and Fallow...
    http://help.sap.com/bp_scmv150/documentation/SCM50_system_reqs.doc
    Fallow the below documentation...
    System Requirements for
    SAP Best Practices for SCM 5.0 Scenarios
    Use
    The objective of this document is to help system administrators to prepare an SAP SCM system for the installation of one or more SAP Best Practices scenarios and to ensure the system setup meets the requirements for the installation.
    This document does not provide information on how to set up the entire SAP SCM system, itself, but provides you with useful additional information and troubleshooting tips.
    System Landscape
    To install one or more of the SAP Best Practices for SCM scenarios from this CD, you should refer to the system landscape described below and compare it with your own existing system landscape as an installation prerequisite.
    Please note that the support package levels indicate the minimum support package level your system landscape should have. If higher support packages exist, we recommend that you install the highest available support package.
    To install and use any SAP Best Practices scenario, you must have installed an SAP R/3 and an SAP SCM system.
    SCM 5.0: Complete Version
    SAP SCM 5.0 contains the following business application components on one system platform:
    •     SAP APO 5.0
    •     SAP EM 5.0
    •     SAP ICH 5.0
    The following table provides an overview of the software component details of the SAP SCM system:
    Software Component     Release     Level     Highest Support Package     Short description of Software Component
    SAP_BASIS     700     0007     SAPKB70007     SAP Basis Component
    SAP_ABA     700     0007     SAPKA70007     Cross-Application Component
    ST-PI     2005_1_700     0001     SAPKITLQI1     SAP Solution Tools Plug-In
    PI_BASIS     2005_1_700     0007     SAPKIPYI77     Basis Plug-In (PI_BASIS) 2005_1_700
    SAP_BW     700     0007     SAPKW70007     SAP NetWeaver BI 7.0
    SAP_AP     700     0004     SAPKNA7004     SAP Application Platform 7.00
    LCAPPS     2005_700     0002     SAPKIBHD02     LCAPPS 2005_700 : Add-On Installation
    EA-IPPE     400     0003     SAPKGPID03     SAP iPPE (EA-IPPE) 400
    SCM     500     0004     SAPKY50004     Supply Chain Management 5.0
    SCM_BASIS     500     0004     SAPK-50004INSCMBASIS     SCM Basis 5.0
    QIE     200     0004     SAPK-20004INQIE     Quality Inspection Engine 2.00
    BI_CONT     702     0002     SAPKIBIHP2     Business Intelligence Content
    Optimization Server Version:
    Identifier     Version
    CTM01     5.0_REL SP04, 356375
    DPS01     5.0_REL SP04, 356375
    CS01     5.0_REL SP04, 356375
    SEQ01     5.0_REL SP04, 356375
    SNP01     5.0_REL SP04, 356375
    VSR01     5.0_REL SP04, 356375
    Live Cache SP05 (LCA50.05, LC 7.6.00.22)
    LiveCache version:     KERNEL     7.6.00   Build 022-123-119-055
    DBM server version:      DBMServer 7.6.00   Build 022-123-119-055
    Operating system:     SunOS
    LCA version:          Module          50   Build 05
    SAP APO GUI
    We recommend that you install the SAP APO specific SAPGUI add-on, which is required for certain business transactions.
    SAP ECC System
    SAP ECC Enterprise with Extension Set 1 (for the SAP Best Practices scenario Fulfillment Visibility we used an SAP R/3 Enterprise system with Extension Set 2)
    Software Component     Release     Level     Highest Support Package     Short description of Software Component
    SAP_ABA     700     0007     SAPKA70007     Cross-Application Component
    SAP_BASIS     700     0007     SAPKB70007     SAP Basis Component
    ST-PI     2005_1_700     0001     SAPKITLQI1     SAP Solution Tools Plug-In
    PI_BASIS     2005_1_700     0007     SAPKIPYJ77     PI_BASIS 2005_1_700
    SAP_AP     700     0004     SAPKNA7004     SAP Application Platform
    SAP_APPL     600     0004     SAPKH60004     Logistics and Accounting
    EA-IPPE     400     0004     SAPKGPID04     SAP iPPE
    EA-APPL     600     0004     SAPKGPAD04     SAP R/3 Enterprise Add-On PLM, SCM, Financials
    FINBASIS     600     0004     SAPK-60004INFINBASIS     Fin. Basis
    BP-ERP05     600V2     0000          SAP Best Practices All-in-One based on ERP 2005 (ECC 600)
    SAP XI System
    If you want to install the SAP Best Practices scenario Supplier Managed Inventory, Release Processing, Responsive Replenishment, Contract Manufacturing Procurement & Supply Network Inventory, Kanban-based Replenishment, you also need to implement an SAP XI system.
    Software Component / PI Content     Release     Level     Highest Support Package     Short description of Software Component / PI Content
    SAP_BASIS     700     0007     SAPKB70007     SAP Basis Component
    Content for SAP BASIS     700     0007          XI content for SAP BASIS 7.0
    Content for SCM     500     0004          XI content for SCM 5.0
    Content for SCM BASIS     500     0004          XI content for SCM BASIS 5.0
    Non-ABAP components, such as the Integration Builder and the Integration Repository, must also be installed and have the respective support package levels.
    For uploading the content in the XI System, refer to SAP note 836200.
    Checklist after the System Setup
    •     SCM Menu
    After you have installed the SCM System, you may have to set up the menu that you want to use.
    To do this, access transaction SE38 and run the report /SCMB/SM_VERS.
    Choose Full Version and then, choose Execute.
    •     Check Planning Version 000
    In your SAP SCM system, use the following path:
    SAP Menu &#61614; Advanced Planning and Optimization &#61614; Master Data &#61614; Planning Version Management &#61614; Model and Version Management
    Make sure that the planning version 000 – Active Version is available.
    If this planning version is not available, this means that the LiveCache has not been initialized. Proceed with the LiveCache initialization before you start with the installation of any SAP Best Practices scenario.
    •     Check that PSE services have been activated
    Use transaction “strust” in your SCM system. All services should have a green light. If it is red, activate all of them. There is no need to reboot the system afterwards.
    OPTIMIZER
    1.     Checking that the Optimizer has been installed
    Transaction SM59 &#61614; RFC Destination &#61614; OPTSERVER_CTM01 &#61614; Test Connection
    If the connection cannot be established, this may be due to the following reasons:
    •     the Optimizer has not been installed
    •     an error occurred during the installation of the Optimizer
    2.     Checking that the Optimizer SP’s have been installed
    Open transaction /SAPAPO/OPT09. The Optimizer Support Packages should be identical to the Support Packages of the SCM system.
    •     Ensuring that the APO relevant PI Settings are activated in SAP ECC
    You have to make sure that the business transaction events are active in the SAP ECC system. Only if these events are active for the SAP APO integration, will changes to the transaction data be transferred from the SAP ECC system to the SAP APO system. This setting should have already been performed; this is just a reminder in order to avoid possible problems later on. Use the following procedure:
    In your SAP ECC system, open the transaction BF11.
    Confirm the message The table is cross client.
    On the Change View: Application Indicator”: Overview screen, check that the applications ND-APO, PI-EM and NDI are active, i.e. selected. If they are inactive, select the check box to activate them.
    Choose Save and go back.
    Web Communication Layer (WCL)
    Ensure that the WCL is installed correctly: Usually the WCL should be connected to the client 001 of the SCM system. Use transaction /saptrx/wcl_search in the SCM system to open the WCL. If a logon pop-up appears, then the WCL is set up correctly. If the message “WCL is not installed...” appears, the respective set up settings should be checked and corrected, if necessary.
    Additional Information
    For additional information on issues such as architecture, sizing, platforms, and upgrades, refer to following page on the Service Marketplace:
    alias /SCM &#61614; SCM Technology
    For information on system monitoring, system administration, volume testing etc., check SAP note 572003. You can also refer to the Service Marketplace, using the alias /SCM &#61614; SCM Technology &#61614; Table of Contents &#61614; Solution Management &#61614;  Best Practices for mySAP SCM Solution Management.
    Thanks,
    Satya Kumar..

Maybe you are looking for

  • GeoRaster in the Enterprise - tips?

    Next week I will start a pilot project loading mid to high resolution (0.5M to 0.1M) orthophotos for about 200 sites around 13000 hectares (50 Sq Mi) each. The sites are for the most part not contiguous, but the data is global. The source format is m

  • How do get video to hdmi TV port without using apple tv?

    My new non retina macbook pro 13 inch is supposed to arrive soon.  My old 42 inch Vizeo only has one hdmi port that works so I was planning to use it a s moniter  for  my DAW.  The apple tv is for the living room, not the room where my DAW is.  But a

  • Gift card money lost!

    I had just redeemed some gift cards and as I was downloading more songs, my iTunes crashed. So I started it up again and said I had only $38.00, the amount I had before the gift cards equaling $80. I tried to re-enter the codes, but they were already

  • How to count and calculate total percentage for field

    hi all, i have two tables as follow: i have a inner join as follow : SELECT distinct dbo.Motor_Story.Name, dbo.Goods.kala, dbo.Goods.type, dbo.Goods.id_story FROM  dbo.Goods INNER JOIN dbo.Motor_Story ON dbo.Goods.id_story = dbo.Motor_Story.Id I have

  • How can I turn off Guided Access if I forgot the Password?

    One of my students with Autism turned on Guided Access on my iPad2 and I do not know how to log off without knowing the password.  Please help!