Ecc to bi implementation

HI ALL
what is implementation project ?
what i think ecc to bi implementation means bi side bi content installation . could plz anbody tell this ans

Hi,
Implemetation means build the datawarehosing solutions (BI) to the customer. 
Implementation means developing the reports based on the customer requirement.
In this context, from BI side, we need to develop the BI dataflow(modeling which includes BI objects) as per the customer reuirement.
from ECC side, we need to configure the BI related stuff in ECC side(Like installation of Datasources.. etc).
Here also sap has give ready-to-use solutions from the business content.
By default sap has give ready-to - use solutions (i.e. called business content in BI point of view) If the customer requirement is exactly matching with the content solution, we can directly implement standard scenarios.
If not, we need to develop customized objects.  
Hope it clear.
Thanks
Edited by: satya prasad on Mar 27, 2010 6:32 AM

Similar Messages

  • Credit management ECC 6.0 implementation

    Hi Experts/Gurus,
    One of our clients have done a technical upgrade from SAP 4.6c to ECC 6.0.
    Now they want to know what will be the timeline required for implementation of the Integrated credit management functionality of ECC6.0 in their SAP system if they go on for functional upgrade.
    Now following are my doubts:
    1) How to compare their existing credit management process/Functionality with the new ECC 6.0 integrated credit management functionality?
    2) How to decide upon the timeline required to implement the new credit management functionalityof ECC 6.0?
    Thanks in Advance!

    Hi,
    Its depend on your company upgrade strategies, compair 40. credit mgt. functionality & 6.0 functionality.
    then go for upgradre
    Heer I some comments on upgrade
    Upgrade Scenarios
    Customers who are motivated to upgrade to ECC 6.0 generally pursue at least one of the four key goals just discussed as the primary goal of the upgrade.
    Improved business strategy
    Sustainability
    Operational excellence,
    Lower TCO
    SAP takes three major approaches to upgrading, each driven by a different motivation and leading to a different ROI and payback periods.
    u2022 Technical upgrade:
    Focuses on risk mitigation and sustainability of the existing SAP solution.
    u2022 Functional upgrade:
    Focuses on reducing TCO by reducing system complexity u2013 for example, by returning custom modifications and custom code to SAP standard code
    u2022 Upgrade with strategic business improvements:
    Considers major reengineering and implementation of new strategic business applications as part of the project scope. These approaches are summarized below.
    The three major approaches can be complemented by other compelling changes such as system landscape consolidation, the implementation of shared service center(s), and so forth.
    In summary, the more your upgrade decision is driven by business improvement goals, the better your expected ROI. Upgrade experiences and customer statistics confirm that the decision for an SAP software upgrade is usually determined by a mix of business, technology, and strategic criteria.

  • ECC Curve P-224 implementation in java card

    Hello
    I am implemeting ECC in java card
    but I need the Curve P-224 as my length
    but Keybuilder is only upto P-192 only
    how can I generate ECC curves parameters and generate key pair
    using Curve P-224 .. please help
    Thank you!

    You're right, Java Card API 2.2.1/2 defines only up to 192 bit ECC key length. You have to find a smart card OS provider who has longer ECC key lengths implemented, offering you an industrial extension API to access it via your applet. Best is to contact smart card manufacturers with your question.

  • CRM To ECC Sold to party Communication Details Not populated in ECC

    Hi All
    i have one problem when we create sales order through crmd_order we need to give sold to party and ship to party numbers suppose like
    8000002166 for both and status i keep as order created and in partner tab i i seem all partner funtions(sold to, ship to ,bill to, payer)with 8000002166
    in header overivew i given posting date as feature date like 30-09-2013 then i try to save this order.
    the order generated sucussfully but problem is i am not getting sold to party details in ECC when i check VA03 And open cretaed order in CRM and clicking on sold to party and i seem details for this but i am not getting communication details like telephone number and email id extension number.
    for this sold to party we already maintained all communication details in CRM.When i open this sold to party BP i am able to see all details
    didnt understand why these details not replicated to ECC?
    We implemented one custom class there we implemented badi.
    IF_EX_CRM_DATAEXCHG_BADI~CRM_DATAEXCH_AFTER_BAPI_FILL
    i am not getting BAPI ADDRESS Table values into  CT_BAPIADDR1
    how can i send communciation details to ECC For sold to party?
    The code part we follow like below
    TYPES : BEGIN OF t_otc,                                                        " Type to create a table with the given columns.
              bpid            TYPE bu_partner,                                       " variable of store processed business partner ID's
              otcid           TYPE bu_partner,                                       " variable of store processed OTC ID's
              otcguid         TYPE bu_partner_guid,                                  " variable of store processed OTC GUID's
              address         TYPE bapibus1006_address,
              tel1_numbr      TYPE ad_tlnmbr1,
              tel1_ext        TYPE ad_tlxtns1,
              e_mail          TYPE ad_smtpadr,
              END OF t_otc.
    *&                             V A R I A B L E S                         &*
      DATA : lv_bp_payer      TYPE bu_partner,                                       " Variable To Cast the payer Id into BU_Partner data type.
             lv_partner_fct   TYPE crmt_partner_fct,                                 " Variable To Store Partner Function Number.
             lv_partner       TYPE bu_partner,                                       " Variable To Store Current Business Partner ID.
             lv_process_type  TYPE crmt_process_type,                                " Variable to Store process type.
             lv_sales_org     TYPE crmt_sales_org,                                   " Variable to store sales org. name of order
             lv_dis_channel   TYPE crmt_distribution_channel,                        " Variable to store distribution channel of order.
             lv_division      TYPE crmt_division,                                    " Variable to store division of sales org. data.
             lv_role          TYPE comt_partner_parvw,                               " Variable to store retrieved role from FM.
             lv_role_value    TYPE parvw,                                            " Variable to store the role value of Partner Functions.
             lv_otc_guid      TYPE bu_partner_guid,                                  " Variable to store OTC GUIDs for the OTC ID.
             lv_otc_id        TYPE kunnr.                                            " Varaible to OTC ID revocered from Table.
      DATA: lv_busspartner           TYPE bapibus1006_head-bpartner,
            lw_central_data          TYPE bapibus1006_central,
            lw_centraldata_person    TYPE bapibus1006_central_person.
    *&                             W O R K A R E A S                         &*
      DATA : lw_address       TYPE bapibus1006_address,                              " Work Area to store address recovered for BPID.
    *Start of code change for Defect 904 Fix
             lw_tel           TYPE bapiadtel,
             lw_email         TYPE bapiadsmtp.
    *End of code change for Defect 904 Fix
    *&                          INTERNAL TABLES                              &*
      DATA : li_otc           TYPE TABLE OF t_otc,                                   " Internal Table to Store the OTC IDs and BPS.
             li_values        TYPE          zconst_values_t,
    *Start of code change for Defect 904 Fix
             li_tel           TYPE STANDARD TABLE OF bapiadtel,
             li_email         TYPE STANDARD TABLE OF bapiadsmtp.
    *End of code change for Defect 904 Fix
    *                       F I E L D - S Y M B O L S                         *
      FIELD-SYMBOLS: <f_orderadm>      TYPE bad_orderadm_h_mess,
                     <f_otc>           TYPE t_otc,                                   " Field-Symbol to Read the OTC TABLE data.
                     <f_partner>       TYPE bad_partner_mess,                        " Field-Symbol of Partner Table For Looping.
                     <f_bapiparnr3>    TYPE bapiparnr3,                              " Field-Symbol to Store The Row of BAPIPARNR3.
                     <f_bapiaddr1>     TYPE bapiaddr1,
                     <f_orgman>        TYPE bad_orgman_mess,                         " Field-Symbol to Read the ORGMAN table.
                     <f_values>        TYPE zcr_const_values.
    *&                             C O N S T A N T S                         &*
      CONSTANTS :  lc_program_name     TYPE progname      VALUE 'ZOTC',
                   lc_param_payer      TYPE paramname     VALUE 'PAYER',              " Constant to Store Payer Parameter name.
                   lc_ref_kind         TYPE crmt_object_kind VALUE 'A',
                   lc_req_1            TYPE zrequest_no VALUE '1',
                   lc_req_2            TYPE zrequest_no VALUE '2'.
    * Retrieving the general and Common Data for a Order.
      READ TABLE it_bus_trans_msg-orderadm_h INDEX 1 ASSIGNING <f_orderadm>.
      IF sy-subrc EQ 0.
        lv_process_type = <f_orderadm>-process_type.
      ENDIF.
    * Reading the Orgnisation Details from ORGMAN Table.
      READ TABLE it_bus_trans_msg-orgman WITH KEY ref_kind = lc_ref_kind ASSIGNING <f_orgman>.
      IF sy-subrc EQ 0.
    *   Storing the Sales Organisational Data to find the OTC_ID.
        lv_sales_org = <f_orgman>-sales_org.
        lv_dis_channel = <f_orgman>-dis_channel.
        lv_division = <f_orgman>-division.
      ENDIF.
    * Retrieving the partner function number for the payer by giving requirement no 2 and rule no 1.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_2
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Reading the value for the constant with the name as PAYER.
      READ TABLE li_values WITH KEY param_name = lc_param_payer ASSIGNING <f_values>.
      IF sy-subrc NE 0.
        RETURN.
      ENDIF.
    * Retrieving the Partner ID for the PAYER.
      READ TABLE it_bus_trans_msg-partner ASSIGNING <f_partner> WITH KEY ref_partner_fct = <f_values>-constant_value.
      IF sy-subrc EQ 0.
    *   Storing the current partner ID.
        lv_bp_payer = <f_partner>-ref_partner_no.
      ENDIF.
      REFRESH li_values.
    * Retrieving the Partner Function Number which are to be checked for replacing with the OTC ID with request no 1 and rule no 01.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_1
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Transferring the constant value to our table for Partner Fucntion.
      LOOP AT li_values ASSIGNING <f_values>.
    * Read Partner table for Header data and the reference partner function retrieved.
        READ TABLE it_bus_trans_msg-partner WITH KEY ref_kind = lc_ref_kind ref_partner_fct = <f_values>-constant_value ASSIGNING <f_partner>.
        IF sy-subrc EQ 0.
    *     Storing Current Partner Function.
          lv_partner_fct = <f_partner>-ref_partner_fct.
    *     Storing Current Partner No.
          lv_partner = <f_partner>-ref_partner_no.
    *     Retrieving the Partner Role (R/3) for the current partner function of CRM.
          CALL FUNCTION

    The problem is in the Lotus Notes security level, not in SAP.

  • Local client copy giving trouble SAP ECC 6.0

    Hello All,
    I installed SAP ecc 6.0 Implementation version. Then created 100 client as Development and 200 client as Golden client.
    Our Functional people are using 100 client for development activities.
    Now Functional people need sand box client  300.
    Created 300 client by using 000 client, user ddic. Using transaction scc4.
    Logged on with 300 client, user sap*, p/w pass. Gone to sccl transaction trying to copy 100 client data to 300 client.     
    BUT IT IS SHOWING
    Runtime Errors            TIME_OUT
    Date and Time              10.01.2008  11:12:12
    Shot dump has not been completely stored ( too big)
    Short text -
      Time Limit exceeded.
    What happened?
    The program “ SAPLSDBI_DYNSQL” has exceeded the maximum permitted runtime with out interruption and has therefore been terminated
    VIRTUAL MEMORY PROBLEM I AM GETTING, TRY TO GIVE THE SOLUTION FOR SOLVING THE ISSUE.
    Regards,
    Sateesh

    Hi Sateesh,
    Increase the number of parallel jobs for the client copy before executing background mode.
    Regards,
    Tolulope
    Edited by: Tolulope OKUSAGA on Jan 19, 2008 12:58 PM

  • Reconcile Inventory BI Content Queries with ECC

    Hi Folks,
    I have a question regarding reconciling Inventory Management BI Content reports based on cube 0IC_C03 with ECC.
    We implemented IM in BI, and now try to reconcile the queries with ECC. Specifically, I have one query, 0IC_C03_Q0008 - Stock in Transit.
    We ran the report by Plant, in BI, it only showed one material with #, but people from ECC side use T-Code MB5T in ECC and saw many materials with Stock in Transit for that Plant; and for the material showed on BI report, the # doesn't match between BI and ECC.
    What is the right way to reconcile the report with ECC? is there any other report/Tcode in ECC we can use?
    Any insight ideas would be much appreciated!
    Thanks,
    Freda

    Hi Freda,
    For me, it is the typical nightmare to try to reconcile the cube to your ECC transactions since the cube summarizes and doesn't include your material documents.
    So, to make it a bit easier to match MB5T or MB51, add an ODS with a material document and Material item key and all of the fields and key figures necessary for reconciliation (I usually look at the datasource's delivered fields and add whatever sounds reasonable to look at).  To fill records in this ODS, only fill them from 2LIS_03_BF, because BX and UM do not contain material documents.
    While I was writting this, I think I realize what is happening in your situation.  If memory serves me correctly, MB5T is Cross-Company SIT, which is not part of the 2LIS_03* datasources.  They only account for Intra-Company (Plant-to-Plant within the same company code) SIT.  For that, there is a White Paper you can have an ABAP'er implement for you.
    Here are two good documents you should read and be familiar with:
    How to .... Report on Cross Company Stock in Transit: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/92c0aa90-0201-0010-17b1-bf5b11c71257
    How to .... Handle Inventory Management Scenarios in BW: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Also, when comparing my cube data to ECC/R/3, I use transaction MMBE in the ECC to identify stock quantities and stock in transit (SIT).
    Brian

  • Technical Requirements for SD in ECC 6.0

    Hi All,
        I need to document the technical requirements in ECC 6.0 implementation for SD Module.Kindly revert back with helpful answers.
    Thanks,
    Faisal

    As per my understanding you require information on what Technical document might be required to be prepared by SD Consultant. If my understanding is correct, in that case we require to prepare Functional Specs for the enhncement & development required in the project.
    Functional Specs:
    To speak at macro level that is at project manager or at senior levels. The Functional Spec (Specification) which is a comprehensive document is created after the (SRS) Software Requirements Document. It provides more details on selected items originally described in the Software Requirements Template. Elsewhere organizations combine these two documents into a single document.
    The Functional Specification describes the features of the desired functionality. It describes the product's features as seen by the stake holders, and contains the technical information and the data needed for the design and development.
    The Functional Specification defines what the functionality will be of a particular area that is to be precise a transaction in SAP terminology.
    The Functional Specification document to create a detailed design document that explains in detail how the software will be designed and developed.
    The functional specification translates the Software Requirements template into a technical description which
    a) Ensures that the product feature requirements are correctly understood before moving into the next step that is technical development process.
    b) Clearly and unambiguously provides all the information necessary for the technical consultants to develop the objects.
    At the consultant level the functional specs are prepared by functional consultants on any functionality for the purpose of getting the same functionality designed by the technical people as most of the times the functionalities according to the requirements of the clients are not available on ready made basis.
    Let me throw some light on documentation which is prepared before and in a project:
    1) Templates
    2) Heat Analysis -
    3) Fit Gap or Gap Analysis
    4) Business Process Design
    5) Business Process Model
    6) Business Change & Impact
    7) Configuration Design, which is just 5 % of Total SAP- have different names -
    8) Future Impact & Change Assessment
    9) Functional Design (Module Wise)
    10) Risk Assessment
    11) Process Metrics and Many More-- Which has impact on Business and its work flow
    Regards,
    Rajesh Banka

  • NW BW 7.3 Implementation Requirements - Portal Patch

    Hi,
    We are planning to launch BW 7.3. So far we do not have a SAP-BW , however we are on ECC EHP4.
    Question :
    Do I have to be on ECC EHP5 to implement BW 7.3 ?
    Is there any Portal Package requirement to implement BW 7.3 ?
    I did gone thur release notes and implementation guide and unable to figure this out
    Can I just use BW 7.3 with BO4.0 with out a NW Portal{ without disturbing existing portal serving ECC} ?
    Thanks
    Gopi

    >>Do I have to be on ECC EHP5 to implement BW 7.3 ?
    No you do not need the newest ECC. If you are on R/3 (former ECC) 4.6 it should be fine.
    >>Is there any Portal Package requirement to implement BW 7.3 ?
    For BW 7.0 JAVA stack is mandatory since web reporting and some oter functionality (information broadcasting, printing etc. runs on JAVA). So not Portal but JAVA Stack is required if you plan to use JAVA based BW functionality.
    >>Can I just use BW 7.3 with BO4.0 with out a NW Portal{ without disturbing existing portal serving ECC} ?
    I think yes.

  • Data migration from 4.7 system to ECC 6.0

    Hi All,
    I am a Solution Architect. Currently working on a typical pursuit requirement. the requirement is as below:
    One of our customer is currently on SAP 4.7 system.  Their current system is shared by 2 companies & the companies got demerged now. Hence they are palnning for fresh ECC 6.0 implementation & migrating Master data & transactional data related to this customer from the current 4.7 system to ECC 6.0.
    I am seeing possible way for data migration is through ALE or LSMW. But I am not confident about the execution plan & process.
    I would wish to know from you people is:
    1. The different methods to do data migration from 4.7 to ECC 6.0 with pros & cons
    2. How to plan for data migration
    3. Risks & mitigations during data migration
    4. different kind of skill set & duration required to accomplish this requirement
    Currently we are planning for 6 months for the ECC 6.0 core modules implementation.
    If you have undergone this kind of project then request you to share your experience. Any information on this regard is appreciated.
    Thanks & Regards,
    Suresh

    Hi
    Go through eh below link for Best Practices
    http://help.sap.com/bp_hcmv1600/HCM_US/HTML/master_data.htm
    [Risk Factors|http://www.informatica.com/INFA_Resources/article_sap_netweaver_mag_data_migration.pdf]
    [Different Methods|http://www.sap-img.com/general/what-are-the-methods-to-migrate-data-from-a-legacy-system-to-sap.htm]
    [Best Practices|http://partners.netapp.com/go/techontap/NGS_migration.pdf]
    Regards
    Pavan

  • Integration with ECC 6.0 and SRM 5.0

    Dear Experts,
    We have ECC 6.0 implemented.
    We want to implement SAP SRM 5.0.
    Kindly anybody can guide us to know the Customisation/ configuration of both the systems.
    For extended classic senario what setting to be done..
    For other scenario what settings to be done....
    regards
    D Ganesh

    Hi shyamasundar,
    Download Guide for Automated Configuration: SAP Supplier Relationship Management (SAP SRM) Portal on the SAP Service Marketplace at http://service.sap.com/instguides
    These will help you.
    http://wiki.sdn.sap.com/wiki/display/SRM/EnterprisePortaland+SRM
    http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/73/c4f67345c045008d06284a7c895b2e/content.htm
    Rgs,
    Pedro Marques

  • Enterprise Portal Implementation - Cost wise.

    Hi Experts,
    Had a few questions/doubts in my mind regarding the costing side of implementation of Enterprise portal.
    If i take an example that an Enterprise has SAP ECC 6.0 implemented, and would need to implement ESS/MSS packages !!!
    Can someone please help in explaining :-
    - What amount would an enterprise need to spend to get the EP packages?
    - Availability of different packages provided by SAP?
    - The licensing cost and what all different packages are available provided by SAP.
    Thanks,
    Puneet

    Hello,
    please discuss issues like this with your account manager at SAP and not officially in SDN.
    Anja
    Moderator

  • Actualizing BPR for ECC 6.0

    Hello!
    We are using SolMan 4.0 SP-12 for our ECC 6.0 implementation. Since most of the BPR content pertains to 4.6C - how do we actualize the BPR to make it current for ECC 6.0 ?
    Thanks.
    Mani

    hi Mani,
    have you downloaded the lastest support pack for the ST-ICO component? That's how you get the lastest BPR content.
    Support Packages and Patches" -> SAP Technology Components" SAP SOLUTION MANAGER" -> SAP SOLUTION MANAGER 4.0"-> Entry by Component" SAP Solution Manager -> ST-ICO 150_700
    regards,
    Jason

  • ISU and general ECC 6.0 functions in same client

    Dear experts,
    This might seem very similar to many questions asked, but I seem to have no concrete answer to my question.
    I know that ISU comes integrated with ECC 6.0 but our Basis consultant is saying that we cannot have ISU functions and ECC general functionalities in the same client.
    Is this true? Or can we use all ISU and ECC 6.0 general functions in the same client?

    Animesh:
    As I mentioned in my reply, there is no technical restriction as to why ISU and ECC would be implemented in separate clients.  Doing it that way will increase work for implementation as you are disrupting normal integration processes.  In my experience, maybe only 5% of customers separate the functions and this is due to business requirements.  the overwhelming majority implement them in one client so as to make use of standard integration of business processes.
    regards,
    bill.

  • Development steps in implementation

    Hi,
    In an implementation project, where ECC is also implementing, after activation of Application component hierarchy in ECC, which step we perform next? DS activation in ECC or BI content activation?
    Thanks

    Hi.......
    Check this..........
    BW implementation
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2b50ac90-0201-0010-d597-8d833833f9e0
    Regards,
    Debjani.......

  • Configuration Issue

    We already implemented EWA in our Solman 7.0 with DB2 Database, but when we run RTCCTOOL in SE38 in Satelite System gives error as below and Solman Component Information ..
    Kindly suggest do we need really required to upgrade Addonu2019s as suggested.
    ===========================================================
    ST-PI     SAPKITLRD2     SAP Solution Tools Plug-In
    CRMUIF     SAPK-50004INCRMUIF     CRMUIF for Solution Manager
    SAP_BW     SAPKW70106     SAP Business Warehouse
    SAP_AP     SAPKNA7016     SAP Application Platform
    BBPCRM     SAPKU50015     BBPCRM
    BI_CONT     SAPK-70406INBICONT     Business Intelligence Content
    CPRXRPM     SAPK-40015INCPRXRPM     SAP xRPM/cProjects/cFolders 4.00 (ABAP)
    ST     SAPKITL433     SAP Solution Manager Tool
    ST-A/PI          -     Application Servicetools for CRM 500 - 7
    ST-ICO     SAPK-1507OINSTPL     SAP Solution Manager Implementation Cont
    ST-SER          -     SAP Solution Manager Service Tools
    ======================================================
            No.   Missing addon/ transport / note                                    Transport log
               Description                 Implementation
           1. [Note 69455  ]      Addon ST-A/PI 01M_ECC600
           Description     "Servicetools for Applications Plug-In" for ERP 2005 / ECC 6.00
           Implementation  From http://service.sap.com/supporttools->ST-A/PI download both the
                           installation ST-A/PI 01M_ECC600 and the proper support package SP01 for th
                           next recommendation. Upload to tx SAINT and install as per note 69455  .
                           Then restart report RTCCTOOL and choose 'List->Refresh from SAPNet'.
           2. [Note 69455  ]      ST-A/PI Addon Supportpackage SP01
           Description     Addon supportpackage SP01 for ST-A/PI 01M_ECC600
                             for ERP 2005 / ECC 6.00
           Implementation  From http://service.sap.com/supporttools->ST-A/PI->Support packages->
                           ST-A/PI 01M_ECC600 download patch SAPKITAR7F. For basis >=700 use the
                           Maintenance optimizer to release the download.
                           Upload from frontend to transaction SPAM, define a queue and import.
           5. [Note 539977  ]     ST-PI Support Packages
           Description     Addon supportpackage level 3 for ST-PI 2008_1_700 for 7.00
                            [patches up to level 3 for Basis tools for services]
           Implementation  Open http://service.sap.com/supporttools-> ST-PI 2008_1_700 ->Supportpk.
                           Add patch SAPKITLRD3 (and predecessors if not yet implemented) to download
                           basket. Release basket via Maintenance optimizer. Upload from frontend int
                           transaction SPAM, define a queue and import the queue.
           7. [Note 539977  ]     Note 1312413 for ST-PI
           Description     Maintenance Certificates for SPAM/SAINT may get periodically overwritten
                           by invalid ones on ST-PI 2008_1_7* SP 00. Prevent this proactively,
                           even if you do not yet use the automatic maint. certificate distribution.
           Implementation  We recommend that you implement the Supportpackage SP1 for ST-PI 2008_1*
                           to solve the error. Only if not possible implement note 1312413   with not
                           version >=12 using SNOTE. Regarding automatic maint. certificate
                           distribution see http://service.sap.com/maintenancecertificate.
           8. [Note 539977  ]     Note 1293657 for ST-PI
           Description     Bug in the automatic distribution of Maintenance Certificates via SDCCN
                           on ST-PI 2008_1_*.
           Implementation  We recommend that you implement the Supportpackage SP1 for ST-PI 2008_1*

    Hello,
    RTCCTOOL is making recommendations to maintain your system for service delivery, and these are not errors.
    The red traffic light is not an error, it means the Note has not been downloaded, the yellow light means it has been downloaded but not applied, and green means it has been downloaded and applied.
    Your component list is not complete as it is not listing the SP levels for all components.
    Also keep in mind, if you did not use SNOTE to apply the Notes, but transported them, then RTCCTOOL will not know this, so if they have been transported, you would need to se tthe status manually in RTCCTOOL.
    But you are showing as an exapmple ST-PI SAPKITLRD2 in your component list and RTCCTOOL is recomending ST-PI SAPKITLRD3. This is the curent version that is being recommended.
    Do you really need to upgrade? I would recommend you do as patches contaim fixes, and you may or may not encounter the errors they fixed. However if you do encounter errors, you will need to upgrade, and support will recommend this be done.
    Hope this helps!
    Regards,
    Paul

Maybe you are looking for

  • Garageband/logic volume issue

    ok so.... i basically finished the pre-production of my album and everything sounds absolutely fantastic.... through garageband and logic that is. when i export the song to itunes or my desktop, everything is very distorted. i understand that this is

  • Need urgent help on After Effects CS4

    Hi, I am completely NEW to after effects. I have a project with 20 frames. I have two audio clips which have been editted to fit all the 20 frames. Q1. When i add the audio clips to frame 1, frame 2, so on... the clips begins from the very start (0.0

  • HR ABAP-Need help in creating the Infotype

    Hi All of you, I have to craete an infotype with 16 fields. But as per my requirement i have to design the screen such as it has to be four tabs , Under each tab i have to dispaly four fields. Urgent please..... Thanks in Advance, Mani.

  • IDOC to xi  problem  IDOC not reaching xi

    Dear all, this is a case of IDOC scenario in development server. we are sending a IDOC form R/3 system to xi system,and when we are checking it with Tcode sm58 ,it is coming as status 12 . but when we try ti view this IDOC in xi system with Tcode IDX

  • Best Practice AV set up on SAP Servers

    Hi, Has anyone come across or aware of any best practice guidelines for AV setup on SAP servers, for example, which files/drives should you exclude and configuration tuning/reg-edits required. We have McAfee as our standard AV and we do use the HIPS