How to compare the programs in two different systems

Hi,
I have two systems say A & B and i have the program say 'Z_TESTPROG'.
How to compare the program in two different systems.
Regards,
Venkat

Hi,
Check the version in Utilities -> version -> version management in both servers is one option.
Another one is using SE39 transaction.
Regards
Manasa

Similar Messages

  • How to compare the contents of two different tables

    hello. can somebody give me an idean on how to compare the contents of two different tables in mysql?
    example, i have a table named Main List and a table named New List.
    The contents of the New List should be compared to the contents of the
    Main List, to check if they are equal. I don't have any idea how to manipulate
    this data. Hoping for your help. Thanks.

    it is better to comapre it using java.. try get the resultset first and store that in collections then comapre the two collections

  • How to compare the contents of two XML documents

    Hi all,
    I was trying to compare the contents of two xml documents, they are both validate for the same XML Schema. i was using the xmlunit to do this. but some how it doesn't work like what i have expected. for example:
    1.xml : <test><item>2</item><item>1</item></test>
    2.xml: <test><item>3</item><item>2</item><item>1</item></test>
    the result from XMLUnit is this two xmls are different, but it compares <item>2</item> with <item>3</item>, which i cannot find out where the real diiffs are.
    does anybody know how i can do this correct?
    best regards,
    tina

    I faced a similar problem in one of my projects and hence wrote my own comparator. Most comparators like ExamXML etc show XML as different if the nodes under a parent node occur in different seqeunce or a set of repeated nodes occur in different sequence. The comparator that I wrote gives you the flexibility to configure how to identify a node from a set of repeated nodes and is able to compare them successfully if they occur in any order. You can view the sample output at http://geocities.com/dheerendra_itbhu/TipsFromDheeru.html
    and contact me in case you need the source code.

  • How to fill the data of two different tables into one?

    Hi Experts,
    I have two tables named CDHDR and CDSHW(structure). I have extracted the  data from these two tables through two function modules named CHANGEDDOCUMENT_HEADER and CHANGEDOCUMENT_POSITION. Now I have the data in to different tables.
    These two tables neither has relationship with each other through any field nor have any field which exist in both. Can anyone tell me in this case what should be the process to take the data of both the tables into one table. How can I match the record of one table to another?
    thanks a ton in advance.
    Edited by: Moni Bindal on Apr 28, 2008 4:16 PM
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:42 PM

    Hye Bindal,
      without a relation, it is not possible to club the data of 2 internal tables. More over it depends on the requirement as to y u should club to non related quantities in an internal table.
    if you wish to do so, one thing is it has internal table which includes the strucute of the 2.
    data: begin of ty_out,
              first type first_structure,
              second type second_structure,
             end of ty_out.
    data: itab type standard table of ty_out.
    data: wa type ty_out.
    loop into it1 into wa1.
    move corresponding wa to wa1.
    append wa to itab.
    endloop.
    loop into it2 into wa2.
    move corresponding wa to wa2.
    append wa to itab.
    endloop.
    now the internal table itab will have all the contents of it1 and it2.
    <REMOVED BY MODERATOR>
    Thanks,
    Imran.
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:43 PM

  • How to compare pixel values of two different grayscale images...

    I have two different grayscale images both of much different sizes. One is 46x20 pixels and the other is 2592x1944 pixels. I'm having trouble finding a way to "scan" the smaller image through the larger one so that comparisons between the pixel values can be made. Basically I'm trying to see if anything matches the smaller image in the big image semi-closely. I can access the pixel values of each image but I can't figure out an algorithm to perform the scan. Any help at all would be very much appreciated! Thanks.

    Hi
    recipe:
    1.
    Find all the values for all the pixels in the small image. Some might be similar. Put all those values that are useful into a List called comparisonList.
    2.
    For each scanline in the large image
    For each pixel in the scanline
    is this pixel the same value as a pixel in the comparisonList?
    if so do something
    is the scanline finished?
    if not next pixel
    loop to next scanline
    where scanline is a horizontal line in the big picture.
    my 2c
    hope helps

  • How to compare the data of two identical tables

    My requirement is to compare two identical tables(eg., t1 and t2) and display the column, which value got changed, old value and its new value.
    For eg:
    T1:
    StudId C1 C2 C3
    1 40 50 90
    2 30 80 100
    3 20 10 11
    T2:
    StudId C1 C2 C3
    1 100 60 90
    2 30 90 100
    3 20 60 80
    output should be:
    StudId Column prevvalue changedvalue
    1 C1 40 100
    1 C2 50 60
    2 C2 80 90
    3 C2 10 60
    3 C3 11 80
    Please help me to how to achieve using oracle pl/sql. It is bit urgent

    No need of PL/SQL, you can do it in SQL as shown
    SQL> create table t1
      2  (
      3  studentId number,
      4  c1 number,
      5  c2 number,
      6  c3 number
      7  );
    Table created
    SQL> insert into t1 values (1,40,50,90);
    1 row inserted
    SQL> insert into t1 values (2,30,80,100);
    1 row inserted
    SQL> insert into t1 values (3,20,10,11);
    1 row inserted
    SQL> commit;
    Commit complete
    SQL> create table t2
      2  (
      3  studentId number,
      4  c1 number,
      5  c2 number,
      6  c3 number
      7  );
    Table created
    SQL> insert into t2 values (1,100,60,90);
    1 row inserted
    SQL> insert into t2 values (2,30,90,100);
    1 row inserted
    SQL> insert into t2 values (3,20,60,80);
    1 row inserted
    SQL> commit;
    Commit complete
    SQL> select * from t1;
    STUDENTID         C1         C2         C3
             1         40         50         90
             2         30         80        100
             3         20         10         11
    SQL> select * from t2;
    STUDENTID         C1         C2         C3
             1        100         60         90
             2         30         90        100
             3         20         60         80
    SQL> select
      2  t1.studentId StudId,'c1' ColumnName,t1.c1 prevvalue,t2.c1 changedvalue
      3  from t1,t2
      4  where t1.studentId = t2.studentId and
      5  t1.c1 <> t2.c1
      6  union
      7  select
      8  t1.studentId,'c2',t1.c2,t2.c2
      9  from t1,t2
    10  where t1.studentId = t2.studentId and
    11  t1.c2 <> t2.c2
    12  union
    13  select
    14  t1.studentId,'c3',t1.c3,t2.c3
    15  from t1,t2
    16  where t1.studentId = t2.studentId and
    17  t1.c3 <> t2.c3
    18  ;
        STUDID COLUMNNAME  PREVVALUE CHANGEDVALUE
             1 c1                 40          100
             1 c2                 50           60
             2 c2                 80           90
             3 c2                 10           60
             3 c3                 11           80
    SQL>

  • How to route the Idoc to Two Different Locations based on the Plant Values

    Hi All,
    We will generate single Idoc, in that we will have 2 E1MARCM segments, one will have UK plant and another will have US plant.
    Now in XI, receiver determination i need to route the idoc to corresponding folders.
    How can we do this, because in x-path, we can check always for the first segment only, second segment will not come into picture.
    Please suggest me

    Hi,
    we can check the multiline  present in receiver determination  and specify the condition for both US an UK  receiver systems.
    Or   if you are sure that only  two (UK and US) will come , then check the condition for  Say  UK and  check the defualt reciver system in case of failure ,if its US it will go to the default system.
    You can also  try out the interface determination condition, please check if below links can help.
    How to write Conditions in Interface Determination for 2 IDOCs
    Single File to multiple IDoc
    Reciever idoc adapter Determination error
    Regards,
    Srini

  • Compare a role in two different systems

    Hi All,
    Is there way to comapare a role in 2 differnet systems as we have dual landscape for ECC.
    Thanks,
    Lisa

    @ Partha - I don't think you have got time to read the thread carefully
    @ Nishant - Your concern is right if both the system using same naming convention. In that case OP would get a warning before uploading the file. However one can change the role name in text file by replace method. Just to keep in mind to keep same char length for role name. And also to be carefull if any other data may get replaced apart from role name :-d
    Regards,
    Arpan Paik

  • How to check the Customizing setting in Different SAP CRM System

    Hello Guru's
    I want to know how to check the Customizing setting in Different system i.e (Sandbox,Development,Quality,Production)
    I mean to say that i was to check all the 4 system are in same line in all the aspects or sink with each orther
    Thanks in advance
    With Regards
    Sreeram

    hi
    to synchronise all the clients in the CRM,u need to structure ur transport request,that is whenever a request has been made,the same has been transported to all the clients or not
    Go to T-Code -SE09 and copy all released transport request from each client from Sandbox,Development,Quality,Production and match all request manually.
    this is just a way other may be to see manually all the settings in all the clients
    best regards
    ashish

  • 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 compare the values of 2 select queires in two diff DB's

    Hi,
    I need help in building the logic to achieve this :
    A program is needed to get reference data from ABC database in ORACLE and update our reference tables with any changes in DEF database in SYBASE.
    Pls give me an example where i can compare the select queires from different databases one exsiting in oracle and one in sybase .
    Any help will appreciated.
    Thanks

    PLS HELP.
    I have no idea on how to do
    2) Using your specific requirements, determine how to know if there is a "new row" or a "missing row" or a row , which has a different description
    Say Table A in oracle looks like this
    Sno Description
    1 Out Of Order
    2 Shipped
    3 Back Order
    Say Table B in Sybase looks like this
    Type Text
    1 Out/Order
    2 Shipped
    4 Not manufactured
    I have to see to that the rows present in Table A in oracle , should be same as rows in Table B in sybase
    If not , we have to update , insert and delete the row which is not present in Table A in oracle in Table B in sybase.
    In the table example i gave , In the first row of Table B in Sybase , the Text is different from that of Description in Table A for that Sno "1"
    So we should update the description.
    Row 4 has Sno "4" which is not their in table A , so delete that row from table A.
    And In table A , Sno "3" row exists , so we should insert that record in table B.
    I know how to query the tables , and get the rows into Result Set ..after that how can i compare and take the steps to update , insert and delete?

  • HT4061 How do I consolidate purchases from two different ids that are on the same bank account, and eliminate the extra id without losing any purchases?

    How do I consolidate purchases from two different ids that are on the same bank account, and eliminate the extra id without losing any purchases? I want my music to match on both ipad and computer.

    Purchases are forever tied to the AppleID they were bought with. There is currently no way to consolidate AppleIDs. Sorry.

  • How can i compare the contents of two folders ?

    how can i compare the contents of two folders and find out which files are in one but not in the other?? Knowing how to do this would be the best thing ever, especially when dealing with a large number of files. Often, for instance, I'm dealing with a large number of images, processing them, and saving the retouched ones to a new folder, and need to check that they are all there. If there are say three files missing in the second folder (out of say a hundred in total) being able to automate the process of elimination would be very useful. Please help!!!
    B

    I really wish I knew the answer to this. I work between two macs, a G5 and MacBook Pro when I'm on the go. Each time I move from one to the other I have to copy all my files to the computer I'm going to work on, so I end up with the same files being duplicated. It's not a problem if it's not much data but in my case the it can be to 30GB, mostly graphics files, photoshop, motion, final cut pro, etc.
    There's has got to be a way automator can make a comparison between two folders to sort out what's changed and what's remained the same. It would be nice also if this feature could be done globally on the hard disk using spotlight's technology to stop files being duplicated in places you didn't even know about and taking up valuable disk space. I'm not sure how this could be done.
    Any bright ideas Apple?

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • How can i use eyedropper between two different art board.

    Hi
    How can i apply the same color for the images in two different art boards with eyedropper.
    I am trying to apply the same color from the image in one art board to another image in another art board.
    Can any one help me please. Thanks
    Steve
    I am using Mac

    apresslink,
    Presuming you are unable to use the Eyedropper Tool normally, in other words keep the target object selected while you pick up the colour, by having the Artboards open in adjacent windows to ClickDrag between (I am still with 10 which may explain at least part of my ignorance for which I apologize):
    Until someone presents a smarter solution, you may cheat and create a carrier object beside the  source object, drop the colour in that, cut and paste it to be beside the target object, and drop the colour there. With multiple colours to drop multiple times, you may create a palette to hold them, to use just like a painter working on several canvases at the same time. Or you could paste diminshed copies of the source objects.

Maybe you are looking for

  • Scheduling Error

    Hello, I am getting the following error when trying to schedule a report: oracle.apps.xdo.servlet.scheduler.ProcessingException: Error occurred while scheduling the job.      at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.getDateObject(Sche

  • Storing documents using Object Services

    Hello, Does anybody know how to activate the Menu Entry 'Store Business Document' ? Thank you , Aranka

  • How do i make is so that the program is running already and then have a start button to execute?

    I created a program to control a function generator.  I want it so that the program is already running when i load it up, and then when i actually want it to run press a start button.   I think you can just do a case structure for the start button...

  • HT204053 logging into icloud on my ipod

    my icloud asks for another account password, how do I re-set to my account?

  • Multicube creation Issue

    Dear SDN, The compounding consistency is not ensured: InfoObject X__Z is compounded with InfoObject X__Y in an involved InfoProvider. X__Yis mapped to InfoObject X__Z in the identification list. As a result, X__Y must also be mapped to X__Y . Thanks