Capture specific range of data in ECC

Dear All;
We have a situation here:
The customer database is huge (more than 1 TERA GB) in Production server, and it is difficult to do client copy of production server database to Test server for the testing/simulation purpose.  Cause it will take long time and require large space in QAS server to copy the client from PRD to QAS.
Therefore, l would like to know if there is a tool (SAP or non-SAP)  to capture certain range the data  (specific range of date) in Production server and place it in the QAS server?
Please advise.
Thanks
Jordan

Dear Udya;
It is the same problem, if we have to do the DB refresh, it will take long downtime to do the DB export for TeraGB database, which customer not quite agreed, and the QAS cannot have the same disk space as the Production, image if we are using the AS400 machine, and we need to have the same disk space as the Production server, it is too costly for the hardware as well as the maintenance cost.
Any other option?
Thanks
Jordan

Similar Messages

  • Find operation with range of dates in entity services

    Hello,
    I created an entity service called A with 3 attributes: description (string), startDate (date) and endDate (date). I need to have a find operation that retrieves all A instances where startDate and endDate are in specific ranges of date.
    For example, operation needs to return all instances where startDate is between 01/03/2007 and 05/03/2007 and/or my endDate is between 10/03/2007 and 15/03/2007.
    Is it possible to do using entity services operations ? If yes, how can I do that ?
    Thanks in advance,

    Hi Helder,
    Create a findBy method (findbyDateRange) for the entity service with the fromDate and toDate as input parameters. In the app service create a method with four input parameters of type caf.core.timestamp/date (fromdateStart, fromdateEnd and todateStart and todateEnd). In the method implementation write :
    //instantiate query filters
    QueryFilter qfInputfromDate = new QueryFilter(fromdateStart, fromdateEnd);
    QueryFilter qfInputtoDate = new QueryFilter(todateStart, todateEnd);
    //get entity service instance
    myEntityServiceLocal entityServiceInstance = this.getmyEntityService();
    //call entity service method
    List dataList = entityServiceInstance.findbyDateRange(qfInputfromDate, qfInputtoDate);
    for(int i=0; i<dataList.size();i++)
       myEntityService data = (myEntityService) dataList.get(i);
      //do your custom processing
    retValue = dataList;
    Hope this helps.
    Thanks,
    Dipankar

  • Load Table Data into Excel Specific range

    Hi,
    I am working with Excel Destination in SSIS, where i have to insert table data into multiple excel sheets with specific range, sheet name same as table name and i should load each table into that particular sheet name in excel.
    So Sheet name will decide at run time and i have created one variable to pass complete sheet name (like [DimAge$A16:R1000]) in excel destination, but it is throwing error Here i am facing two complexities
    1)Getting error while passing excel sheet name as variable
    2) How to insert into excel in specific range of values shown as above.
    Ur help in solving this would be appreciated

    Hi Naveen,
    Based on my research, a worksheet or range is the equivalent of a table or view in Excel. The lists of available tables in the Excel Source and Destination editors display only existing worksheets (identified by the $ sign appended to the worksheet name,
    such as Sheet1$) and named ranges (identified by the absence of the $ sign, such as MyRange).
    So when you use a variable with [DimAge$A16:R1000] or [Select * from DimAge!A$16:R$1000] value in the Excel Destination, the value acts as a worksheet or range name. But there is no such worksheet or range in the excel file, so the error message occurs.
    To fix this issue, please select the cell range in your excel sheet, then right-click the range to define a name for the range to create some ranges with the specific ranges in excel file, then in the "Name of the Excel Sheet" drop down box of
    "Excel Destination Editor" you can see that Named range. Then simply select the range from the drop-down list or use a variable with the range name as the Excel Destination.
    For more information about how to import data to Excel sheet's specific region, please refer to the following blog:
    http://getsetsql.blogspot.in/2012/01/using-ssis-load-data-to-excel-sheet-at.html
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Retrieve specific range data from oracle table

    Hi, Dear friends,
    I want to retrieve all the data from oracle table and then save them to mysql table using JDBC ResultSet. The problem is that some oracle table is too big, if I retrieve all of them to memory at a once time using excuteQuery, the program will become no response out of memory limitation. So my question is if I can retrieve just specific range data once a time. I can¡¯t find this function through JDBC API. Also, I don¡¯t want to use the specific sql sentence, for example ¡°select ¡ from¡ where someid>¡ and someid<¡¡±, because there are many different tables, I want to transfer them automatically. So I can¡¯t construct such sql sentence in advance. Does anyone know if oracle JDBC driver provide such kind of function or does there any other way?
    Any suggestion will be greatly appreciated!
    Sammy

    Dear Justin,
    thank you so much for your prompt reply!
    as your suggestion, I do check the performance while my program is running, after the program become nearly no response, I found the memory usage is nearly 100%, while disk usage and process usage is pretty low. that's the reason why I guess maybe the memory limitation, but the strange thing is that no any error reported by JBuilder, it just nearly no response and don't transfer any data any more. my os is windows xp, the version of JBuilder is 7. my main memory is 768M. just as you said, the total 6,000 records in not very large, just no more than 400K. another strange thing is that why my program works well when there is little data records in the table.
    the big picture of my program is first I retrieve oracle table metadata, according to this information, I construct DDL sql words and then create the corresponding table in mysql database. this part works well. in order to save your time, I will not paste the code here. then there is a method to transfer oracle data to mysql table, whenever creating the mysql table, then I will call this method to transfer datat to it. the following is the code of this method, I am very sorry to take your time. please read it when you are available.
    thank you very much!!
    Sammy
    //transfer data from oracle to mysql!!!
    private static void transferData(Connection oracleConn, Connection mysqlConn, String oracleTableName, String oracleSchemaName) throws SQLException{
    Statement oracleStmt=oracleConn.createStatement();
    Statement mysqlStmt=mysqlConn.createStatement();
    // sending sql to oracle to retrieve data
    String thisTableName=oracleTableName;
    String oracleSQL="SELECT * FROM ".concat(thisTableName);
    ResultSet oracleRS = oracleStmt.executeQuery(oracleSQL);
    String sql="";
    if (oracleRS.next()) {
    ResultSetMetaData rsmd = oracleRS.getMetaData();
    int colCount = rsmd.getColumnCount();
    do {
    String sqlBodyPart="";
    String sqlValuePart="";
    System.out.println("the number of column is "+colCount);
    for (int i = 1; i <= colCount; i++) {
    String columnValue = oracleRS.getString(i);
    boolean b = oracleRS.wasNull();
    String columnName =rsmd.getColumnName(i);
    System.out.println("the value of column " + i + "is " + columnValue);
    //construc the sql body part and value part
    sqlBodyPart=sqlBodyPart.concat(" ").concat(columnName).concat(",");
    if(b){ //if the value of the column i is null
    sqlValuePart=sqlValuePart.concat(" null").concat(",");
    }else{
    sqlValuePart=sqlValuePart.concat(" '").concat(columnValue).concat("',");
    //get rid of the last comma in sqlBodyPart and sqlValuePart
    if(!sqlBodyPart.equalsIgnoreCase("")) sqlBodyPart=sqlBodyPart.substring(0,sqlBodyPart.length()-1);
    if(!sqlValuePart.equalsIgnoreCase("")) sqlValuePart=sqlValuePart.substring(0,sqlValuePart.length()-1);
    //construct the sql sentence!!!
    sql="INSERT INTO ".concat(thisTableName).concat(" (").concat(sqlBodyPart).concat(") ").concat(" VALUES(").concat(sqlValuePart).concat(")");
    System.out.println("the sql words for this column is");
    System.out.println(sql);
    System.out.println(" ");
    if(mysqlStmt!=null){
    int rows = mysqlStmt.executeUpdate(sql);
    } else{
    System.out.println("can't connect with mysql server");
    System.exit(1);
    while (oracleRS.next());
    } else {
    System.out.println("There are no data in the table...");
    }//end of method data transfer!
    //end of method data transfer!

  • How to find a specific day in a range of dates

    Hi !
    Can someone help me with this
    I would like to find if there is a Saturday in a range of dates:
    ex: OpenDate:2012-01-19 to CurrentDate,  should return  2012-01-21
          OpenDate 2012-01-23 to CurrentDate, should return null field
    Thank you

    Hi Diane,
    You can use this formula to find a Saturday in a date range:
    numbervar days := datediff("d",{Date_Field}, currentdate)+1;
    numbervar x;
    datevar array dates;
    redim dates[days];
    datevar sat;
    for x := 1 to days do
        dates[x] := {Date_Field}+(x-1);
        if weekday(dates[x]) = 7 then
        datevar sat := dates[x];
    sat;
    Hope this helps!
    -Abhilash

  • Specific range

    Hi,
    I have acquired some data(Magnitude versus frequency), I want to just select the points which are in specific range(their frequency.....X-axis), for example I want to filter the signal only for the points which are between 20Hz and 30Hz. Does anybody know how can I do that?
    I used "In range and coerce", but it gives the "lower limit" for the points which are not in the rang. I don't want it to pick that points.
    I'd appreaciate it.
    Thanks
    Petar
    Solved!
    Go to Solution.

    Hello, 
    I think you could try using a For Loop instead of the "In Range and Coerce" function. You just input your data into the For Loop, and using a conditional tunnel you can compare the data that you want. I attached a picture of a little example I created for you to see. 
    Attachments:
    Capture.PNG ‏6 KB

  • BPC:NW - Best practices to load Transaction data from ECC to BW

    I have a very basic question for loading GL transaction data into BPC for variety of purposes, would be great if you can point me towards best practices/standard ways of making such interfaces.
    1. For Planning
    When we are doing the planning for cost center expenses and need to make variance reports against the budgets, what would be the source Infocube/DSO for loading the data from ECC via BW, if the application is -
    YTD entry mode:
    Periodic entry mode:
    What difference it makes to use 0FI_GL_12 data source or using 0FIGL_C10 cube or 0FLGL_O14 or 0FIGL_D40 DSOs.
    Based on the data entry mode of planning application, what is the best way to make use of 0balance or debit_credit key figures on the BI side.
    2. For consolidation:
    Since we need to have trading partner, what are the best practices for loading the actual data from ECC.
    What are the typical mappings to be maintained for movement type with flow dimensions.
    I have seen multiple threads with different responses but I am looking for the best practices and what scenarios you are using to load such transactions from OLTP system. I will really appreciate if you can provide some functional insight in such scenarios.
    Thanks in advance.
    -SM

    For - planning , please take a look at SAP Extended Financial Planning rapid-deployment solution:  G/L Financial Planning module.   This RDS captures best practice integration from BPC 10 NW to SAP G/L.  This RDS (including content and documentation) is free to licensed customers of SAP BPC.   This RDS leverages the 0FIGL_C10 cube mentioned above.
      https://service.sap.com/public/rds-epm-planning
    For consolidation, please take a look at SAP Financial Close & Disclosure Management rapid-deployment solution.   This RDS captures best practice integration from BPC 10 NW to SAP G/L.  This RDS (including content and documentation) is also free to licensed customers of SAP BPC.
    https://service.sap.com/public/rds-epm-fcdm
    Note:  You will require an SAP ServiceMarketplace ID (S-ID) to download the underlying SAP RDS content and documentation.
    The documentation of RDS will discuss the how/why of best practice integration.  You can also contact me direct at [email protected] for consultation.
    We are also in the process of rolling out the updated 2015 free training on these two RDS.  Please register at this link and you will be sent an invite.
    https://www.surveymonkey.com/s/878J92K
    If the link is inactive at some point after this post, please contact [email protected]

  • Select a range of data

    Hi everyone,
    I would like to know how to do to select a range of data (for example on a force/time graph during a jump landing (parable), from a certain value to another) to register it on a special file? I tried the module "separate" or "cut out" but I don't think they will be useful when you don't know when will appear the specifical value you're looking for...
    Is it also possible in Dasylab to know the director coefficient of this type of curve (quite linear...)?
    Thanks!
    Solved!
    Go to Solution.

    Perhaps...
    Select the values in a block (y values) at given positions (y values).
    Calculate the differences, and calculate the quotient.
    M.Sc. Holger Wons | measX GmbH&Co. KG, Mönchengladbach, Germany | DASYLab, DIAdem, LabView --- Support, Projects, Training | Platinum National Instrument Alliance Partner | www.measx.com
    Attachments:
    steigung.jpg ‏187 KB
    steigung.zip ‏6 KB

  • Using a range of dates for Key Date

    In a HR Bi data warehouse, we have a position-to-position hierarchy, where each of the nodes are time dependent. So, it shows for each node,  valid from and valid to dates, and all the employees who are reporting to that position. This hierarchy is built on the infoobject 0HRPOSITION, which is maintained in R/3 and extracted to BI.
    Let us take an example: Position 1000 is valid from 1-1-2006 to 6-30-2006 Employees reporting to this position are A,B,C,D
                                           Position 1000 is valid from 7-1-2006 to 12-31-9999 Employees reporting to this position are A,E,F,G
    When a user chooses the position 1000, and date range 1-1-2006 to 12-31-2006, it show the complete list of employees as
    A,B,C,D,E,F,G.
    Because the Keydate can only be a single value, and it is automatically taking today's date, and pulling the nodes based on that.
    I have created a hierarchy node variable on the 0HRPOSITION infoObject, and entered the value 1000, with no value for the keydate.
    The system is simply showing employees, A,E,F and G. That is my problem
    My requirement is this: I like to be able to give a date range, (for the hierarchy)  say from 1-1-2006 to 12/31/2006 and get the complete list of Employees, which is A,B,C,D,E,F,G.
    Is this possible? Can I change the way this hierarchy is defined so that I can pull the possible values for a range?

    Thank you Ajay.
    After some thinking, I have realized that these options will not work.
    We have a position-to-position hierarchy that shows who reports to who in the organization. This hierarchy is built on the Infoobject 0HRPOSITION.  Each node in this hierarchy has is time-dependent. Note that, the entire hierarchy is not timedependent. Only the individual position nodes are time-dependent.
    This 0HRPOSITION infoobject exists in the  Heacount cube as one of the characteristics. Here is my requirement.
    1. I want to show in a report, all the employees (directly or indirectly) reporting to a manager for a period of say, 1 year?
    I know that I can specify a key date for the hierarchy 0HRPOSITION, then the report will show all the employees (direct and indirect) reporting to a position say 6/30/2008. I don't want this for a specific date, I want to get  ALL the employees (direct and indirect) reporting to a position in a range of dates( say 1 year)
    Does that make sense? How do we achieve this goal?

  • Passing a range of dates from Visual Composer 7.0 to Bex Analyzer

    Dear Experts,
             I created a button in my Visual Composer model that has the following settings:
    System action:  Hyperlink
    Apply to:  Self
    Hyperlink address:  "...QUERY=BMMSEG_C01_SAS_Q0001&BI_COMMAND_1-BI_COMMAND_TYPE=SET_SELECTION_STATE&BI_COMMAND_1-TARGET_DATA_PROVIDER_REF_LIST-TARGET_DATA_PROVIDER_REF_1=DP_1&BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-CHARACTERISTIC=MBUDAT&BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-SELECTIONS-SELECTION_1-SELECTION_INPUT_STRING=08/22/2006;08/28/2006"
            Basically, what I need is to pass a range of dates from Visual Composer to Bex Analyzer on the characteristic "MBUDAT".  However, it only brings back the data with those specific dates, not the range.  
          I don't think this is the correct syntax to pass in a range value:  08/22/2006;08/28/2006  Please advise how should I do it. 
    Thank you in advance,
    Kevin

    Hi J GOEL,
           Thank you for your quick response.  I created a date range variable ZPSTDAT, and then I passed in the oncatenated value to my Bex query (for this example, let says the From date is 08/22/2006, and the To date is 08/28/2006 ).
          Here's what I passed in into the url:
    ...QUERY= BMMSEG_C01_SAS_Q0001
    &#38;BI_COMMAND_1-BI_COMMAND_TYPE=SET_SELECTION_STATE
    &#38;BI_COMMAND_1-TARGET_DATA_PROVIDER_REF_LIST-TARGET_DATA_PROVIDER_REF_1=DP_1
    &#38;BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-CHARACTERISTIC= ZPSTDAT
    &#38;BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-SELECTIONS-SELECTION_1-SELECTION_INPUT_STRING= 08/22/2006:08/28/2006
       However, it returns all the records, so it seems like it doesn't even accept the range value that I passed into the Bex.  Do you mind to please show me the url you have that pass in the date range.  I just need to see the date range part, not the entire url.
    Thanks,
    Kevin

  • Af:table fetching next range of data

    Hi!
    I have a table component on jsf page, property RangeSize set to 25(default). Now I want to invoke a method from my managed bean each time when is fetching next range of data of ViewObject(next 25 rows). But how can I invoke this method? Does anybody have such example?
    Thanks for answers.
    Jdeveloper version: 11.1.2.2.0
    Regards, Stanislav

    Hi, John!
    Ok :)
    I have a transient attribute on ViewObject. Now this attribute calculates by groovy expression. (adf.object.applicationModule.method1 invokes on each row). The problem is that this method isn't trivial and it has some common calculations and some specific calculations for current view row. Now I wan to speed up this thing. I wrote a method in manage bean, that does executes logic like on adf.object.applicationModule.method1. But I divided common calculations(now they have performed once) and specific calculations for current view row(now they have performed in cycle). It calculates faster, but only for first 25 rows. When I fetch next 25 rows, this method doesn't invoke. So, I want to invoke this method after fetching next range of data :) With first variant I don't have a problem with calculation after fetching next range of data.
    Regards, Stanislav
    Edited by: Stanislav on 17.10.2012 10:01

  • How to Delete emails in Specific range on database level (Exchange 2010)

    Hi All,
    Kindly assist me on deleting emails in specific range. i have exported all users mailbox using this below powershell script and in the same manner can we delete all the emails from users mailboxes in the below date range. Please advise
    foreach ($usr in (Get-Mailbox -Database "DB01")) { New-MailboxExportRequest -ContentFilter 
    {(Received -lt "12/07/2012")} -Mailbox $usr -FilePath \\Server01\DB01_Export\$($usr.Alias).pst・}
    Thanks, Venkatesh. &quot;Hardwork Never Fails&quot;

    Hello,
    You can use search-mailbox cmdlet with -deletecontent switch:
    http://technet.microsoft.com/en-us/library/ff459253(v=exchg.141).aspx
    http://andersonpatricio.ca/how-to-delete-messages-using-search-mailbox-in-exchange-server-2010/
    Hope it helps,
    Adam
    www.codetwo.com
    If this post helps resolve your issue, please click the "Mark as Answer" or "Helpful" button at the top of this message. By marking a post as Answered, or Helpful you help others
    find the answer faster.

  • Pulling of Exchange Rate data from ECC to BI

    Hi All,
    we are having an requirement to pull TCURR Table Exchange Rate data from ECC to BI.
    If anybody worked on this scenario could you please share valuable inputs regarding this.
    I gone through this  SDN forum link: Re: Automated Exchange Rate Loading in BPC NW ( please share some more details regarding this )
    Regards
    Amit

    Hi All,
    I hope this will help you to pull Exchange rate data from ECC Table : TCURR  to SAP BI System.
    ECC Steps : Creation of generic datasource
    1) Create generic Transaction Data source Using TCode : RSO2 with name ZTCURR and then press create Button.
    2) Input Applic. Component:  FI-GL and give description.
    3) Input View/Table: TCURR and Press save Button.
    4) This will take you to extract structure of data source ZTCURR. In this structure select respective field from the selection field option (In future we will use it in BI info package) and then press save button.
    5) Use Tcode:  RSA3 to check the data by giving custom data source ZTCURR name.
    Note:In this case we are extracting full data from TCURR table. If your project demands you can use delta specific field.
    SAP BI 7 Steps
    1) Go to BI system, TCode: RSA1--> Source System-> Replicate metadata, then you can see generic data source "ZTCURR" in your BI data source tree.
    2) Maintain Info cube Structure same like table : TCURR, 
    ECC Field      ECC DATA TYPE                               BI Field     BI Data Type
    KURST     CHAR                          -
      >                 ZKURST     CHAR (Length 4)
    FCURR     CUKY                          -
      >          ZFCURR     CHAR (Length 5)
    TCURR     CUKY                          -
      >          ZTCURR     CHAR (Length 5)
    GDATU     CHAR                          -
      >          ZGDAT       CHAR (Length 8)
    UKURS     DEC                             -
      >          ZUKURS     NUMBER ( Key Figure )
    FFACT     DEC                             -
      >          ZFFACT     NUMBER ( Key Figure )
    TFACT     DEC                             -
      >          ZTFACT     NUMBER ( Key Figure )
    =========================================================================================
    3) Conversion of default format "YYYY/MM/DD" to "YYYYMMDD".
    In Transformation: "GDATU" is number format, not date format, so we need to write start routine in transformation.
    With the Help of below code you can convert default format
    "YYYY/MM/DD" to "YYYYMMDD".
    DATA: DATE      TYPE CHAR10,
              L_INDEX   TYPE SY-INDEX.
      LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.
        L_INDEX = SY-TABIX.
        CALL FUNCTION 'CONVERSION_EXIT_INVDT_OUTPUT'
          EXPORTING
            INPUT  = <SOURCE_FIELDS>-GDATU
          IMPORTING
            OUTPUT = DATE.
        CONCATENATE DATE+6(4)
                    DATE+3(2)
                    DATE+0(2)
        INTO <SOURCE_FIELDS>-GDATU.
        MODIFY SOURCE_PACKAGE FROM <SOURCE_FIELDS> INDEX L_INDEX TRANSPORTING GDATU.
    ENDLOOP.                    
    Note : Customize above ABAP code according to your client requirement.
    ==============================================================================================                    
    4) Calculation of Month End Rate----> Means last working day of month
    Please refer below solution  ( sent on 3rd June 2011 )  to calculate Month Rate
    Go to BI transformation and write formula in ZGDAT field. In this case add GDATU as source field of rule and write below formula.
    *Last working day of month Formula *    :             LAST_WORKINGDAY_MONTH( GDATU, '' )
    Last working day is calculated  based on the data maintained in the ECC TCODE : SCAL ( SAP Calendar )
    ==============================================================================================
    5)  CALMONTH calculation:  conversion of YYYYDDMM format   to YYYYMM format.
    This below given ABAP code helps you to convert GADTU: YYYYDDMM format   to CALMONTH : YYYYMM format.
    In BI transformation write field routine in CALMONTH field  to display  date in this YYYYMM format.
    DATA : L_GDATU TYPE tys_SC_1-GDATU.
    CLEAR L_GDATU.
    CONCATENATE SOURCE_FIELDS-GDATU0(4) SOURCE_FIELDS-GDATU4(2)
                INTO L_GDATU.
    RESULT = L_GDATU.                      
    Regards
    Amit
    Edited by: amit_sap_n on Jul 20, 2011 1:54 PM

  • When transferring HR data from ECC to CRM via change pointers

    When transferring HR data from ECC to CRM via change pointers ,certain data is getting earsed in CRM
    paricularly the last name and first name of BUT000
    Do you have any idea why this could be happening
    Thanks in advance

    Hi Kittu,
    Change pointers. Change pointers are R/3 objects that mark changes to SAP master data. Change pointers are managed by mechanisms in a Shared Master Data (SMD) tool and are based on Change Document (CD) objects. CD objects record the changes occurring to master data at a field level. These changes are stored in tables CDHDR (header table) and CDPOS (detail table). ALE configuration provides a link between CD objects and change pointers. Internal mechanisms update tables BDCP and BDCPS, which host the change pointers. While CD objects are application-data-specific, the processing status of change pointers is message-type-specific. Also, the ALE change pointers are activated first at a general level and then at the message-type level.
    use this links kittu.
    http://help.sap.com/saphelp_nw04/helpdata/en/ab/27bde462848440ba70cf8eb348c86f/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/12/83e03c19758e71e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/9d563cf19bcb43e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ab/27bde462848440ba70cf8eb348c86f/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/12/83e03c19758e71e10000000a114084/frameset.htm
    Creating a change pointer and subsequently triggering an IDOC
    thanks
    karthik

  • How to map service contract data from ecc to crm

    Hi Experts,
    Please help me,how to map service contract data from ecc to crm system.
    is there any perticular process.please let me know.
    thanks in advance..

    Hi Srinivasulu,
    Create the service contract type of ECC and also item categories under it in ECC in CRM. Map the number ranges.
    Check the Partners mapping from R/3 to CRM and that will be all.
    I tried but in CRM in the transaction type internal number range is mandatory. So, if you create service contract in ECC with one number it will replicate to CRM but with different number. But you can see ECC number under the transaction history in CRM.
    Good Luck.
    Sharath.

Maybe you are looking for

  • OMB in Oracle11gR1

    Hi all. I found that on OMB DB11R1, OMBINSTALL OWB_TARGET_USER was not there. It differs from OMB DB10g. What is the command that I should replace instead of this.... Thanks in Advance. Edited by: SwapnaPrerana on Nov 23, 2010 2:55 PM

  • Authorization : roles and profiles

    Hi, I have two questions that I need answers - How do I check roles that are assigned to reports and - roles and profiles needed to execute reports thanks in advance

  • HT2822 Why doesn't a network list appear anymore yet Apple TV says I'm connected to the internet?

    Since updating Apple TV I lost the usual main menu. Now I can't even see Network lists like I did before the update. The main menu show options for Computer Sharing and Settings. Apple informs me that I am connected to the Internet through built in e

  • Preloader not on frame 1

    ok,so this is probably a stupidly simple fix, BUT - i have tinkered with it for a few hours now and im getting no where.... i have my site tween in a graphic ( my logo ), and then the preloader pops up...... the preloader is on frame 15 inside its ow

  • Siemens Open PSC 7 time stamp anomoly

    Forum, I have a tag that resides on both, Aspen IP21 and a Siemens PSC 7, 7.1 HDA. Both of these historians reside in the Mountain TZ and both servers are set to Mountain TZ and observing DST. The MII server is in the Eastern TZ observing DST. MII ve