Moving OTC processes from SAP R/3 into SAP CRM 5.0

Hi all,
A SAP CRM client that I am currently working on have decided to extend the project scope and now want to move all their existing OTC processes from R/3 to CRM 5.0. Their system is heavily bespoked with a high level of user exits, as during the initial implementation they preferred to use more ABAP than config although some of the functionality was available as standard. If they haven’t figured it out yet, I’m sure they’ll be asking themselves soon whose clever idea that was. They have over 1m customer records with a low transaction volume per customer per year, configurable products, complex pricing and use Biller Direct, just to mention a few.
Has anyone got any experience in doing this previously? Any issues, challenges or lessions learnt apart from the obvious ones?
Thanks!
J

Seshu Mannepalli wrote:
> As part of the upgrade we are going to do initial upgrade in the mock server and vendor is going to provide mock server with AIX 7.1 O/S.  Current database size is 100GB, hence we are going to copy the production server data into the mock server using export and import method,
>
> Here my doubt is can i install db9.7 directly and do the import (using compitable kernel)?, insteady of installing source database version 8.1 and later upgrading to db2 9.7 . Please clarify me whether can i go head and install the db2 9.7 and do the system copy using R3load.
Hello,
You can go ahead for IMPORT with DB 9.7.
We completed an OS/DB Migration Project (which involves system copy using EXPORT/IMPORT) and we utilized direct newer version of DB2 on the target during IMPORT.
But please confirm whether the kernel of your release would work fine with DB 9.7 or not. Otherwise, there is no problem in going for higher version of DB2 here.
Small question -  Why you want to test the Mock Upgrade on DB2 version which is different than the current version on production server ? Or are you planning to upgrade your current DB2 8 to DB2 9.7 BEFORE the SAP Upgrade on all the servers - then the testing is OK I think (however OS is still the different - Or may be you will go for system copies for this too !)
Thanks

Similar Messages

  • Reg: Upload an image from IBM File Net into SAP ZTABLE .

    HI,
    I have a requiremnt to Upload an image from IBM File into SAP ZTABLE .
    or
    can anyone give me an idea on
    How to Upload an image from any image software into SAP ZTABLE .
    Thnaks,
    Arjun
    Edited by: Arjun on Jan 22, 2010 2:24 PM

    hI,
    I've found the solution!!
    My code was wrong, the correct way is:
    DATA:  image type XSTRING,
                imagelength type i.
    DATA: it_img TYPE w3mimetabtype.
    CALL FUNCTION 'SSFC_BASE64_DECODE'
       EXPORTING
         b64data = output-CONVERT_FROM_URL_RESULT
       IMPORTING
         bindata = image
       EXCEPTIONS
         OTHERS  = 8.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
       EXPORTING
         buffer                = image
         "APPEND_TO_TABLE       = ' '
       IMPORTING
         OUTPUT_LENGTH         = imagelength
       tables
         binary_tab            = it_img.

  • Guideline Performance Initial Download from SAP for Utility into SAP CRM

    Hello,
    Please find below a link (valid for 10 weeks) to the document Guideline Performance Initial Download from SAP for Utilities into SAP CRM. The document is also published in the SAP Service Market Place at http://service.sap.com/utilities. Then choose Technical Information Center - Migration.
    The purpose of the document is to give guidelines as well as to share experience for an efficient and high performance execution of an initial download from an SAP for Utilities system to an SAP CRM system, such as:
    - Configuration of the initial download
    - Ensure optimum performance for the initial download of the relevant business objects
    - Avoid unnecessary business data being downloaded
    - Monitoring of the initial download and taking corrective actions in case of problems
    - Handle errors occurring during the initial download of business objects
    - Minimize performance bottlenecks
    The document explains the setup and configuration of the SAP for Utilities and SAP CRM systems only if necessary for the understanding of the solution of a described performance problem. This document does not cover the performance optimization of the delta down- and upload and the synchronization download.
    The document has the following structure:
    Chapter 1 describes the basics of an initial download
    Chapter 2 describes how to plan and execute tests to achieve an acceptable performance
    Chapter 3 describes the most important technical activities to prepare the involved systems
    Chapter 4 describes the most important functional activities to prepare the involved system
    Chapter 5 describes how to perform an initial download
    Chapter 6 describes measures to improve the performance of an initial download
    Chapter 7 provides a list of important repository tables
    Chapter 8 contains a list of important SAP Notes related to initial download
    I'd highly appreciate your valuable feedback on this document.
    Kind regards,
    Fritz
    Edited by: William Eastman on Feb 17, 2011 2:34 PM

    Hi Fritz,
    sorry for the late late reply but I didn't notice your answer.
    Here are my answers:
    (1) I monitored the behaviour on the CRM system, CRM 7.0, SP5
    (2) The change should be implemented in the CRM system
    (3) Deactivate buffering for scenarios marketing, sale and service via SM30 and table T770MATTR.
    By doing this the initial load of 3.2 million business agreements took around 2 hours, with activated scenario buffering I was at least ten times slower.
    After the initial load you have to activate the buffering again.
    Interesting to know would be why the scenario buffering only affects the initial load of business agreements and no other object. As far as I know the scenario buffering is relevant for the organizational management.
    Regards
    Alexander

  • How to read the data from a PDF document into SAP

    Hi Everyone,
    I am trying to read a PDF document from my desktop and get the data into SAP but i am not getting successful.
    I am using the method cl_gui_frontend_services=>gui_upload and passing the filename and type and importing the file length and the data into an internal table.
    I tried the file type as ASC but i couldn't get any records in the internal table and the filelength is displayed as 0.
    When i tried the file type as BIN, it is giving the short dump. I guess that is because the file i am trying to read is not with the extension BIN.
    Please Advice me on this
    Poornima

    Hi Kiran,
    Below is my program..
    REPORT  zpdf_data_update.
    DATA : lt_file_table TYPE filetable.
    DATA : lv_rc TYPE i.
    DATA : lv_filename TYPE string.
    DATA : lv_filelength TYPE i.
    TYPES : BEGIN OF hex_record,
              data TYPE string,
            END OF hex_record.
    DATA: lt_rawtab TYPE TABLE OF hex_record.
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    CHANGING
    file_table = lt_file_table
    rc = lv_rc
    EXCEPTIONS
    file_open_dialog_failed = 1
    cntl_error = 2
    error_no_gui = 3
    not_supported_by_gui = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    ENDIF.
    READ TABLE lt_file_table
    INTO lv_filename
    INDEX 1.
    cl_gui_frontend_services=>gui_upload(
    EXPORTING
        filetype = 'BIN'
        filename = lv_filename
    IMPORTING
        filelength = lv_filelength
    CHANGING
        data_tab = lt_rawtab
    EXCEPTIONS
        file_open_error = 1
        file_read_error = 2
        no_batch = 3
        gui_refuse_filetransfer = 4
        invalid_type = 5
        no_authority = 6
        unknown_error = 7
        bad_data_format = 8
        header_not_allowed = 9
        separator_not_allowed = 10
        header_too_long = 11
        unknown_dp_error = 12
        access_denied = 13
        dp_out_of_memory = 14
        disk_full = 15
        dp_timeout = 16
        not_supported_by_gui = 17
        error_no_gui = 18
        OTHERS = 19 ).
    But it is giving me a short dump saying that the field symbol is not assigned ...
    If i give the file type as ASC , then i am getting an empty table... Please advise me on this
    Thanks
    Poornima

  • Taking time data from external system(KRONOS) into SAP

    Dear Friends,
    I have to intergrate my time managemnt to time recording machine(KRONOS) am not aware about that it's sap certified or not .How we can access the data from that machine and insert in sap tables that means we have to communicate sap to non sap system.I don't have to use the BDC because i have to update our table according to machine shall i go for IDOC and EDI.In that case which IDOC or EDI i have to use .I have to create the INBOUND interface for that .Kindly help me am stuck
    thanks
    sandeep dabral

    Hi Sandeep,
    You require a abap guy along with a basis person. Below steps are required.
    Step 1: The third party ll specify the file format in which they are going to send the data.
    Step 2. You need to check with the basis or a third tool to upload the file into SAP application directory tcode al11.
    step 3: Then the ABAP guy will write a interface program using this BAPIs to upload the data in to catsdb.
    Step 4. Then functional testing and bug fixing and finially sheduling the inteface job in Production.
    Br/Manas

  • How to - Extract data from Cloud For Customer into SAP HANA system

    Hello Community,
    I have a requirement for extracting the existing data from Cloud for Customer into separate SAP HANA Box.
    Is it possible to achieve the same ? If yes, Please guide me for the same.
    Awaiting quick response.
    Regards
    Kumar

    Hi Kumar,
    In addition to what Thierry mentioned you could also use the C4C integration via standard Operational Data Provisioning (ODP) interfaces. This integration was acutally built for SAP BW and allows you to access any C4C data sources. From my perspective you can also build upon that for a native SAP HANA integration. Please also have a look at this guide: How To... load SAP Business Suite data into SAP... | SAP HANA.
    Besides that question let me also add the following: SAP Cloud for Customer already runs on SAP HANA since Nov. 2013. You may also use the powerful built-in analytics within C4C for analyzing data and any of your reporting demands. If your report should consider external data as well, you can combined the existing C4C data source with an external, so-called Cloud Data Source. More infomation is published in the C4C Analytics Guide: http://help.sap.com/saphelp_sapcloudforcustomer/en/PDF/EN-3.pdf.
    I hope this helps...
    Best regards,
    Sven

  • How to import the transports from the SAP Integration Kit into SAP system

    Hi expert,
    I read the forum "Re: Integration with SAP R/3 to realise i have not done the import of transport but i don't quite understand the statement give by "Sebastian Li".
    "Unpack the SAP Integration Kit zip-file. It contains a transport-folder. Here you'll find a short manual which files you should import.
    Copy the needed files on your sap-system in the correct folders:
    - usr\sap\trans\cofiles
    - usr\sap\trans\data
    Use the transaction STMS.
    Also take care of the sequence of importing. See the manual for details."
    Can some one explain it in more details to me. I have unzip the SAP Integration Kit n in the transport folder got 2 more folder "ansi" and "unicode_compatible". How do i know which 1 to use? Where i should copy this files to?
    Please advice.
    thank you

    Hi Rajesh,
    check this : logon failed. you do not have the necessary rights to design reports
    @Sri

  • Processing Customer Master in MDM into SAP

    Hi,
         I have a requirement where I am processing DEBMAS (Customer Master) in MDM and posting in to SAP. Can somebody give me a detailed Step-By-Step procedure to go about Posting this Inbound DEBMAS Idoc to SAP from MDM?
    Thanks,
    Venkat.

    Hi,
    Generally we CIF Customers from ECC to APO , this way all of the information is passed to APO.
    and maintain this customer in ECC View V_CIFVMISD.
    If it is a VMI customer then you need to put some additional info like VMI customer number on VMI tab and need to extend material to customer location.
    If you are creating manually customer in APO then make sure it is assigned to model 000.
    Thanks,
    Pavan Verma

  • Moving the data from multiple internal tables into a single one

    Hello everyone,
    I am creating a classical report which uses the following tables.
    tables : ekko, ekpo, mara, makt,lfa1.
    my input parameter is 
    Select-options Purchase Order number
    Following fields are getting used.
    Doc no                  EKKO-EBELN
    Material              EKPO-MATNR
    Item number          EKPO-EBELP
    Quantity             EKPO-MENGE
    Material Group          MARA-MATKL
    Vendor                  EKKO-LIFNR
    Old Material code   MARA-BISMT
    Material Desc.           MAKT-MAKTX
    Vendor name         LFA1-NAME1
    Now i need to do the following task.
    1 Select record from EKKO Using document number.
    2 Select record from EKPO using EKKO record using Document no as key.
    3 Find out Old Material code of each and every material from Material master.
    4 Find out Material description for each and every material from MAKT.
    5 Sort record on Vendor, Purchase Order number and Material.
    I have defined seperate internal tables for these operation.
    Once i have fetched records into these individual internal tables  from the corresponding DB tables i need to move these values into a new internal tables which has all the above fields mentioned
    I need to move these values into a new internal table because to display the values on the report.
    Any idea for the above ? Plz help with a sample example or some relevant.
    Regards,
    Ranjith Nambiar

    Hi
    1 Select record from EKKO Using document number.
    2 Select record from EKPO using EKKO record using Document no as key.
    Use inner join and retrive data into one internal table.for Ex ITAB1
    3 Find out Old Material code of each and every material from Material master.
    Use ITAB1 with for allentries in MARA table to get the onl materil number populate in to one table.
    4 Find out Material description for each and every material from MAKT.
    Get the Material desc with the same manner as above,
    5 Sort record on Vendor, Purchase Order number and Material.
    now sort the ITAB1 as you req.
    now Loop on the ITAB1.
    and read above 2 tables for old matnr and matner deac and append into another table as you want.
    Hope this will help.
    Regards,
    Hiren Patel

  • Moving one clip from one FCE project into a second FCE project on a second

    hi, I would like to take one clip of several from a FCE project, save that one clip and put it into a movie on a second computer. Can I do that? How? thank you joanlvh

    Take the clip or clips. Export as a self-contained QuickTime Movie and move it to the other computer.

  • How to get the EXCEL file from web site (b2b) into SAP system?

    Hi Guys,
    I have a requirement of saving the excel file that has been send to SAP system from a B2B site.
    Currently there is a call to the SAP system from the B2B site via an RFC function ,this RFC functions gets the excel file as an input to the SAP system,i need to store this Excel file in the SAP  (as an excel file itself).
    How can i acheive this?
    Please suggest.
    Thanks ,
    Swati

    You can extract a date portion and  assign to the variable and then compare with GETDATE()
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Passing message text from external RFC server into SAP EXCEPTION parameter

    In function module CREDIT_CARD_SETTLEMENT the following DYNAMIC function module call exists:
    ------ Send items for settlement to a RFC function -------------------
        CALL FUNCTION l_fnset
             DESTINATION l_rfcset
             EXPORTING   i_ccseth                = i_ccseth
             TABLES      t_settab                = t_settab
                         t_setexd_h              = t_setexd_h
                         t_setexd_i              = t_setexd_i
             EXCEPTIONS  system_failure          = 01 MESSAGE rfc_msg_text
                         communication_failure   = 02 MESSAGE rfc_msg_text
                         call_function_not_found = 03.
    This is the code which calls an external credit card application server.  I'm trying to figure out how, on the server side, I can return a message into the rfc_msg_text variable on the system_failure or communication_failure EXCEPTIONS.
    I’ve found several examples of this construct in ABAP code in the SAP side – but I can’t for the life of me find anything that shows how to set this up in our external server. 
    There are several SAP function modules like RFC_PING that have similar constructs – but I can’t see the compiled C code to tell what command to use to fill in that text.  I can raise the exception, just not fill in the text.
    Any ideas?

    Hi Eric,
    I do not quite understand the problem.
    Is there an external NON-SAP system, that needs to do the call?
    Within any external SAP system (inside the RFC Function Module) you can raise exceptions in the following manner:
    MESSAGE e398(00) WITH par1 par2 par3 par4 RAISING exception_1.
    Message 398 in class 00 contains only & & & & as text.
    Each & is replaced by par1 through par4.
    Suppose par1='Order' par2='1234' par3='invalid' par4=''.
    Then a message would be build like: Order 1234 invalid.
    This all would reside in the remote called function module.
    When you call this module and after any exception in the call the addition MESSAGE rfc_msg_txt was put, then the variable rfc_msg_txt='Order 1234 invalid'.
    But as already stated before, i'm not quite sure what the problem is. Shed some light to it.
    Greetz,
    Rob.

  • Moving FR & Analyzer from 931sys with SQL2005 into 931sys with SQL2000

    Had anyone done this before?
    I sent out steps guidance informing what am I gonna do during the installation (Steps by steps!) and PIC of each activities, somehow she didn't read it, when I got here the servers got SQL2005 inside and no one can change it as the SQL girl is gone.
    We are having paralel run now, so this new env with 2005 will be moved into final production env which is using SQL2000. They can't upgrade it as the SQL is not used only for Hyperion.
    Has anyone done this before? is it okay? anyway I am trying to export and import the FR and analyzer manually as theirs reports # are small.
    Thanks.
    Daniel

  • Need help on SAP ISU data into SAP BI

    Dear all
    I am getting the data from isu to bw through 0uc_sales_stats_02.
    but i am getting the record counts into isu and bw is same as well...
    i am not understanding the reconsilation keys concepts in isu side
    the isu report and bw report is not matching
    isu data having the documnet number and the document date as well
    now i am getting only the data which is having the document date and posting date is currnet month  iam getting that data into bw
    if today some datacomming  from isu into bw....but isu data having the today date document number and one month back documnet number...in bw its comming only the todays documnet number ...not last month documnet number...how can i solve this?>

    Stop multi-posting and cross-posting your questions.

  • SAP ISU datasource into sap bw

    for sap r3 ource we will go to lbwe and we will activate the data sources.and we will set up the delta
    but where as i can see for sap isu daatasiurces there is blank in the lbwe..
    so how can i set up the dets there?

    Dear BW User,
    Try with RSA5 install/transfer DataSources.
    Install ISU data sources...
    Now check in LBWE.
    Regards,
    Ram.

Maybe you are looking for

  • CD Drive disabled after installing Elements 11 on Windows 7

    I realized a couple of days after I installed Elements 11 on my Dell laptop running Windows 7 that the CD/DVD drive on my laptop was no longer visible to the operating system.   After fooling around for an hour trying to get a disc out, I remembered

  • EWA report generation in Solution Manager 7.1 SP12

    Hi Friends, I am done with Managed System Configuration.. Now I need to generate EWA reports for the same. But I am getting some inputs that, EWA is automatically configured in Managed System Configuration itself. Can you guys suggest me accordingly.

  • How do I disable the ability to delete history?

    I work at a middle school where all of the 6th graders have 11 in Macbook Pros currently with Mac OS X Version 10.7.5. We have been playing around with the parental control features on the computer, but have not been able to find how to make a passwo

  • JAVA ME enabled phones in UK

    Could anyone tell me if i can purchase a Mobile Phone within the UK that is Java ME enabled. How much would it cost?

  • Host command through java stored procedure

    Hi All, Im trying to execute the winword command to open a MSWord document, print & exit the document, through dos prompt, from client pc to the default printer, through java stored procedure oracle pl/sql forms. How can achieve this? Kindly help. rg