Compare two Request/Task from different systems

Hi all,
Before I post my question, here is a small introduction to the scenario.
We have 300 transports among this transports we have Function Modules, Reports and Classes. We are planning to migrate these transports to a new environment and we would like to compare these objects from E1 (Environment 1) with E2 (Environment 2 - New Environment) in a dynamic way (instead of doing it manually).
So the question is: Does anyone  knows if there is program to do this comparison?
Thanks in advance,
-C

Hi Tina,
You can use a trnasactions like SCMP, SADJ or SCU0 - all tools to do comparison of customizing objects across clients/systems using RFC.
Details of these tools, their usage and functionalities are available in the Help Portal -
[http://help.sap.com/saphelp_47x200/helpdata/en/70/1accb7fab511d18e0f0000e8a48612/frameset.htm]
Best Regards,
Rekha

Similar Messages

  • How to compare two views/tabels from two systems via RFC

    Hello
    How to compare two views/tabels from two systems via RFC. I know there is a transactio or program but which

    Hi Tina,
    You can use a trnasactions like SCMP, SADJ or SCU0 - all tools to do comparison of customizing objects across clients/systems using RFC.
    Details of these tools, their usage and functionalities are available in the Help Portal -
    [http://help.sap.com/saphelp_47x200/helpdata/en/70/1accb7fab511d18e0f0000e8a48612/frameset.htm]
    Best Regards,
    Rekha

  • Running queries coming from different systems

    Hello All
    I have a scenario,
    We are using BI version 7.0,
    The requirement is to  run queries in BEX analyzer coming from 2 different SaPBW systems.
    For example :
    We have two  BW systems A and B,
    In the First tab  we have query running based on the BW system A and in the second tab query running on Bw system B.
    When we try to run the second query in the second tab the first query vanishes,
    Can anybody help me, is it possible to run the 2 different queries from different systems???
    Regards,
    Ravi

    Hi Ravi,
    Even using RRI you will not be able to combine reports from different systems in single workbook. RRI is generally used for Summery to detail level reporting. In such scenarios from first report you click on particular characteristic and other details related to this characteristics are shown in different report coming from any other source.
    If you want this kind of report to run then either you will have to build a Virtual provider in one of the BI system making source as another system and then create a query and use it in same workbook.
    In this way your report might take some time to execute but you don't need to load all your data from one system to other.
    Regards,
    Durgesh.

  • Compare pricing procedures in 2 different systems ??

    Hi All,
    I know with T-Code SE39, we can compare ABAP program in 2 different systems, Likewise is there any Transaction Code where I can compare pricing procedures in 2 different system. or compare 2 different pricing procedures in same box.
    Thank you,
    madhu

    Dear Madhu
    May be you can try with this.
    Go to V/08, select your pricing procedure and execute.  From top menu bar, click on Table View --> Save.   Again from top menu bar click on Table View --> Print  so that you can see the overview of that pricing procedure. 
    Now parallely you can open another screen, select another pricing procedure and do the same process as above.
    thanks
    G. Lakshmipathi

  • How to merge two search button from different criteria

    How to merge two search button from different criteria
    this image show the question
    http://s24.postimg.org/4algthuj9/1111.jpg
    two different criteria for the same view and I need to merge it in one button as when I click
    on the button search result give from two criteria parameters

    You can!t using af:query. the af:query component comes as is. If you can't do it through the properties, you probably can't do it at all.
    As in your other thread, the way to go is to program your own search form. This way you can use a layout and functionality you like.
    For this you create a form with input fields for the values you are searching for, put them on hte page in a way you like and in the end by hitting on a button (e.g. called Search) map all inputfields to parameters of a service method you defined in your application module or VO. This service method then executes a view criteria returning all matches in the default iterator (just as if you had used af:query.
    Timo 

  • UWL Workitems from different Systems in a sequence

    Hi ,
    is it possible to show UWL items in a sequence from different systems.
    I mean if i have a workitem   xx coming from system ABC and another YY coming from DEF
    it must appear in UWL as
    xx
    YY
    Please let me know is it possible and what is the procedure.
    Thanks,
    Anil

    Hi Anil,
    The display happens for a user based on the sorting properties from within the personalization as one other poster mentioned.  However this is personalization per user.  To do this for everyone, the sortby properties would need to be changed in the XML
    file.  I was thinking sorting by systemid, subject and sent field MAY do this for you.  However, I'm not quite sure but as the previous poster mentioned, it would be worth trying this first with your id, then possibly overriding the standard xml file by putting the sortby parameters for systemid subject & sent in the DefaultView or creating your own custom view and putting the sort parameters there.  This is just an idea and it would be worth testing with your id first.  Here is some additional information on the Personalizing the Universal Worklist display:
    http://help.sap.com/saphelp_nw70/helpdata/en/50/f5b3e1ad524c54a94fa768a648e232/content.htm
    Best Regards,
    Beth

  • How can i compare two excel files with different no. of records.

    Hi
    I am on to a small project that involves us to compare two excel files. i am able to do it but am struck up at a point. When i compare 2 different .csv files with different no. of lines i am only able to compare upto a point till when the number of lines is same in both the files.
    Eg. if source file has 8 lines and target file has 12 lines. The difference is displayed only till 8 lines and the remaining 4 lines in source lines are not shown.
    Can you help me in displaying those extra 4 lines in source file. I am attaching my code snippet below..
    while (((strLine = br.readLine()) != null) && ((strLine1 = br1.readLine())) != null)
                     String delims = "[;,\t,,,|]";
                    String[] tokens = strLine.split(delims);
                    String[] tokens1 = strLine1.split(delims);
                   if (tokens.length > tokens1.length)
                    for (int i = 0; i < tokens.length; i++) {
                        try {
                            if (!tokens.equals(tokens1[i])) {
    System.out.println(tokens[i] + "<----->" + tokens1[i]);
    out.write(sno + " \t" + lineNo1 + " \t\t" + tokens[i] + "\t\t\t\t" + tokens1[i]);
    out.println();
    sno++;
    } catch (Exception exception)
    out.write(sno + " \t" + lineNo1 + " \t\t" + tokens[i] + "\t\t\t\t" + "");
    out.println();
    Thanks & Regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    A CSV file is not an Excel file.
    But apart from that your logic makes no sense.
    If the 2 files are of different sizes the files are different by definition, so further comparison isn't needed, you're done.
    If you want to compare individual records, you need to compare all records from one file with all records from the other, unless the order of records is important in which case your current system might work.
    That system however is overly complicated for comparing CSV files.
    As you assume a single record per line, and if one can assume those records to have identical layout (so no leading or trailing whitespace in or between columns in one file that's not in the other) comparing records is simply a matter of comparing the entire lines.

  • How to make this function module as RFC to get data from different system?

    Hi
    I am trying to use following function module . This function module is used to copy data from one cube to another cube within same system however I need a this should happen across two different system. How can I use this function module to make it remote call to different system and do the same function what it is doing ?
    Name of function module -
    RSDRT_INFOCUBE_DATA_COPY
    Any help would be really helpful
    AG

    HI,
      let us say you want to copy the data of a cube in system A to a cube in system B .
      1) create a RFC function module in system B (in this function module  call the function module RSDRI_CUBE_WRITE_PACKAGE to update the data), this RFC function module should have same parametersa as RSDRI_CUBE_WRITE_PACKAGE .
    2) write a program in system A .. read the data from the infocube using the function module RSDRI_INFOPROV_READ and call the RFC function module in system B that you have created..
    for the details of the parameters to pass to these two function modules use the RSDRT_INFOCUBE_DATA_COPY and get the required code
    Thanks
    mahesh

  • Data from different systems in one report in Visual Composer

    Hi,
    I want to create a dashboard report in visual composer where in I have a set of 10 tables data to be displayed in one page out of 10 queries I am getting the data for 5 of the reports from Bi system and for other reports we get it from CRM system .Can I place data coming from 2 different reports in one view.If so how is that possible.
    What are the advantages we have in Visual composer apart from WAD .
    Regards,
    Maya

    Hi,
    Two different reports can be placed in one iview, but as far as i know it is not possible to combine two reports data into single table.
    regards,
    Pruthvi R

  • Unable to compare the same program in different systems

    Hi,
    We have a Development & QA system (apart from Production). Now for a program that is in both, Dev & QA, I wanted to compare them using SE37. I clicked on "Compare Different Systems"  button. Now I selected the program from Dev for Left-Justified & from QA for Right. When I hit the "Display" button, it gave me the following error message:
    Error remote access: Error during the retrieval of the logon data store.
    Can anyone help me with this?
    Thank you.

    Hi Jack,
    I went to SM59 & double clicked on my RFC (that I thought would work). It took me to the RFC destination config. screen & it showed me the following message:
    User password invalid for identifier /RFC/---- (see long text)
    ( the dotted lines denote the RFC name )
    It's not shown with a red cross mark. It's shown with a Green tick mark. So how do I correct this now & be able to compare the proram? Please let me know.
    Thank you.

  • Taking Idocs from different systems

    Hi Experts,
    I have done a scenario for CREMDM and DEBMDM where i had to get Idocs from R/3 system and send them to MDM using XI.
    Now, i have to do a scenario where i have to take Idocs from two different systems and send them to a single MDM system. What changes do I need to make apart from those in SLD if the fields in the latter case are same as those in the former?

    Hi,
       Sorry, i am unable to get what do u want.
      Any how,based on my understanding i will provide some inputs.
    1. please make sure the proper filed as correlation,
        based on corelation only we can able to bundle the idoc's
        (when we use the BPM).
       check the following scenario to bundle the idoc's.(not exact to u r requiremnet), but smilarity is there.
      i,e SAP Basis component ->http://sap.com/xi/XI/System/Patterns->BpmPatternCollectTime ( integration scenario)....
    regards
    mahesh.

  • Schema compare between 2 databases from different server

    Let me know the method for comparing schema between 2 databases from different server of SQL 2012 and sending that in mail.

    Check redgate:
    Compare SQL Server schemas and deploy differences
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Is there any way to merge two WorkSpace screens from different projects

    Is there any convenient way to merge two WorkSpace screens from two different VS projects?
    Thanks.

    I just looked, the property inside the .nivsscreen file for the workspace layout is a big variant... so this won't work.
    Sorry!
    Stephen B

  • Syncing two video clips from different cameras.

    When both video clips are on the timeline filmed with two cameras to get different angles, is there a a keyboard shortcut to move either clip one frame at a time, or while listening to the audio a way to move the clips incremently until both videos are in sync. Some of the filming I used a 'clap' method, but wasn't able to always do this. Basically I think I am asking for fine adjustments along the timeline via the keyboard, frame by frame.

    You can select the clip in the timeline and press:
    "." (dot) to move right by 1 frame
    "," (comma) to move left by 1 frame
    ":" (colon) to move right by 5 frames
    ";" (semicolon) to move left by 5 frames
    If you keep the key pressed the clip will slowly move either wy.
    You can also select one clip in the timeline and type a number n: this will appear in a small window labeled Move; when you press Enter the selected clip will move n frames to the right. For example type 8 and Enter and the clip will move right by 8 frame. To move left by 8 frames type 8, left arrow, "-", Enter (to enter negative numbers (to move left) first enter the value and then add a "-" in front of the number).
    Make sure the tool is the Selection Tool (arrow) otherwise instead of moving the clip you apply other actions (slip, roll, etc.).
    Piero

  • How to compare transport requests found in different environments

    Hello gurus,
    I need to know what are the transport requests found in my development environment but which are not found in my Production environement. In other words, I want to have a list of all transport requests that have not been transported yet to the production .
    I intend to select data from E070 for the 2 environments and compare using loops and reads.
    I would like to know if there is a function module that does the same job?
    thanks in advance.
    Parvez

    Hi soobhany parvez .,
                   Please post the report u developed for knowing the status of Transport Requests across systems, i will be helpful for me and others.
    Thanks&regards.,
    S.Sivakumar

Maybe you are looking for

  • What would be the best way to use a list in a textarea to compare to values in a column in a database table?

    I'm trying to move a table from a MS Access database to a datasource online so I don't have to be the only one that can perform a specific task. Right now I regularly am having to assess change requests to determine if it impacts the servers my team

  • Child groups in Reports and generating to XML...

    Hi, We have Report Builder 6.0.8.8.3. The data model includes a number of queries, each related to a master query by a single column. i.e.: where MASTER_GROUP.object_id = CHILD_GROUP_1.object_id1 and MASTER_GROUP.object_id = CHILD_GROUP_2.object_id2

  • How to create Bills Docs of position

    Hi all A help..... In my sales order I will bill (invoice) each position. Most of the cases the position have different PAYERS (PY). Meaning I have to be able to do the billing document by position(item). How can I do that? Thanks a lot, Barbara

  • How do I get music from iPad to iTunes on new computer?

    I recently broke my hard drive in my mac and got it replaced but everything was lost including my music from iTunes. But I still have my iPad with all my music on it. Is there a way to transfer that music back onto my computer?

  • How can I heal a "transparent" area?

    I've got a panorama that has several narrow "missing" areas at the top, due to the geometry and the sloppiness of the handheld shooting.  It seems like it should be no problem, because the sky is pretty much white, though not quite (about 89-89-89) .