Comparing the roles b/w two systems

hi
to all
i want to know is it possible to compare the roles between two system i.e., source system (old version system)and target system(new version system).

Hi,
Hi,
These tcodes are mainly used to compare the authorisations objects assigned to two different users/roles/profiles etc in same or diff systems.
To compare between two
Tcodes
Users----
S_BCE_68001430
Roles----
S_BCE_68001777
Profiles----
S_BCE_68001431
Authorizations----
S_BCE_68001432
Hope this helps.
Pl award suitable points.
Regards

Similar Messages

  • Comparing the creation time of two jars.

    Hi,
    My requirement is that i need to compare the creation time of two of the jars and see which one of the jar is the latest.
    I did it using the following code i get the output in the form of strings so i cant compare them to find which one is the latest.
    import java.io.*;
    import java.util.*;
    public class FileTest {
         public static void main(String args[]) {
              File devbuild = new File(
                        "\\\\devspace\\dev$\\ReleaseEng\\DEVbuilds\\tw_enterprise\\build\\jboss\\Oracle\\Twelibrary.jar");
              File local = new File(
                        "D:\\jboss-4.2.1.GA\\server\\TWEServer\\Twelibrary.jar");
              Calendar now = Calendar.getInstance();
              int currtime = now.get(Calendar.HOUR_OF_DAY);
              int maxtime = 18;
              System.out.println("Before the while loop");
              while (currtime < maxtime) {
                   System.out.println("Inside the while loop");
                   if (devbuild.exists()) {
                        try {
                             // get runtime environment and execute child process
                             Runtime systemShell = Runtime.getRuntime();
                             BufferedReader br1 = new BufferedReader(
                                       new InputStreamReader(new FileInputStream(devbuild)));
                             BufferedReader br2 = new BufferedReader(
                                       new InputStreamReader(new FileInputStream(local)));
                             Process output = systemShell.exec("cmd /c dir " + devbuild);
                             Process output1 = systemShell.exec("cmd /c dir " + local);
                             // open reader to get output from process
                             BufferedReader br = new BufferedReader(
                                       new InputStreamReader(output.getInputStream()));
                             BufferedReader br3 = new BufferedReader(
                                       new InputStreamReader(output1.getInputStream()));
                             String out = "";
                             String out1 = "";
                             String line = null;
                             String line1 = null;
                             int step = 1;
                             int step1 = 2;
                             while ((line = br.readLine()) != null) {
                                  if (step == 6) {
                                       out = line;
                                  step++;
                             } // display process output
                             while ((line1 = br3.readLine()) != null) {
                                  if (step1 == 6) {
                                       out1 = line1;
                                  step1++;
                             try {
                                  out = out.replaceAll(" ", "");
                                  out1 = out1.replaceAll(" ", "");
                                  System.out.println("CreationDate: "
                                            + out.substring(0, 10));
                                  System.out.println("CreationTime: "
                                            + out.substring(10, 16) + "m");
                                  System.out.println("CreationDate: "
                                            + out1.substring(0, 10));
                                  System.out.println("CreationTime: "
                                            + out1.substring(10, 16) + "m");
                             } catch (StringIndexOutOfBoundsException se) {
                                  System.out.println("File not found");
                             //Long modifiedtime = devbuild.lastModified();
                             //long oldtime = old.lastModified();
                             int devbuilddate = Integer.parseInt(out.substring(0, 10));
                             int devbuildtime = Integer.parseInt(out.substring(10, 16));
                             int localbuilddate = Integer.parseInt(out1.substring(0, 10));
                             int localbuildtime = Integer.parseInt(out1.substring(10, 16));
                             if (devbuilddate >= localbuilddate && devbuildtime >= localbuildtime) {
                                  System.out.println("The Build date is Later than the one i am having--->");
                                  System.exit(6);
                             } else {
                                  System.exit(0);
                        } catch (Exception e) {
                             e.printStackTrace();
                   if (currtime > maxtime) {
                        System.exit(5);
    How can i do it?
    Can anyone help me out in this.
    Thanks,
    Kavipriya.

    Hi Clap,
    Thanks for ur reply. Let me say you the scenario clearly. We are in the process of automating some of the process. We have builds running daily night and our automation will run using that build.
    Currently the build which is getting generated does have manifest in it. For our automation framework we cant suggest adding the manifest. Which will not be agreed.
    Our automation will be checking till 10.am. to check whether the build is ready if not it will come out of the loop. If the build is avaialble within 10 then it will take the build and see whetehr the creation date and time of the build and the one i am having locally or different. If diff it will see whether the build generated is latest than the one i am having.
    If it so then the process will run.
    So hope you got my issue.

  • How to check the Network Connectivity between two systems.

    Hello Everyone,
    Please let me know different ways to check the network connectivity between two systems other than ping/traceroute commands.
    Thank You.
    Edited by: 835435 on Jan 20, 2012 11:43 AM
    Edited by: 835435 on Jan 20, 2012 11:44 AM

    Use snoop.
    snoop -d <nic> - will give requests and replies coming/going in/out of the specified NIC.
    snoop -d <nic> <MAC address of the target host> - will give requests coming from the required host.

  • Comparing the "line" results of two Cubesets- is it possible?

    Hi all-
    I had asked this previously- I'm going to try again and hopefully be clearer about what I'm hoping to accomplish. I'm open to any way to accomplish this, although in the best possible world I'd be able to keep it inside one or more cubeformulas using MDX
    as needed.
    Using Cubeset, I can grab a slice of an AS cube. For this example I'll use [locations] and [Jan 2014]. The resulting cubeset has 3 items: 
    Rock City
    Orlando
    Boston
    Now I want to compare two measures for equality (by location), without building a pivot table or creating a cell for each of the returned locations (some cubesets will be quite large).
    For example, it is important that [Hours worked] and [Hours paid] are
    equal. I don't want to know if the overall sums are equal, I need to know if they are equal for each item in the Cubeset;
                      Worked      Paid
    Rock City       220          220
    Orlando          517          516
    Boston           391          392
    Total           1128        1128
    So in this example, the grand total is the same, but my comparison should return a False/failed result because one location paid more than they should have, and someone at the other location got underpaid.
    What is the best way to compare measures at a "line item" (cubeset) level without powerpivot or pivot tables? I'd even take a VBA solution over a pivot table- I'm good with VBA, although it would still be another learning curve for me
    to learn how to access the AS cube more directly and make these comparisons in VBA.
    One additional complication- for some measures, I will need to round (or roundup) the individual values before comparison. If a person works 8.97 hours, we are going to pay them for 9. For other measures it will be a normal rounding to zero decimals, to
    smooth out calculation differences.
    If I can get the individual line item comparison but not the rounding, I'll ask the cube folks to add rounded measures to the cube for me, so that is my backup plan if it is possible to do the comparison but not the rounding.
    I appreciate any/all suggestions on how to do this comparison, starting from the existing cubesets!

    Hi Keith,
    As I understand you are trying to add compare the values.
    I am trying to look into it but as of now I have this workaround for you. You can try to create a new column having if formula that returns 1 if the cell values are equal and 0 if they are not.
    At the total row we compare the sum of value of the column with if formula that we created and the sum 1128 in this case with the help of if formula again.
     The formula that returned wrongvalue is IF(B5=SUM(D2:D4),B5,"wrong values"). Please let me know if it works for you. Below is the table that I worked on -
    Worked     
    Paid
        Compare
    Rock City
    220
    220

    Orlando         
    517
    516
    0
    Boston          
    391
    392
    0
    Total          
    1128       
    1128
        wrongvalue

  • 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.

  • How to compare the codes written in two different windows?

    Hi ,
    I have a long code written for a FM.
    Now I have got the same code in a notepad.
    I want to check weather the codes in the two windows are exactly alike.
    Is there any easy way to do this?

    hi Harshit Rungta ,
    T-code SE39 - ABAP split screen editor use to compare 2 different programs ,function modules ,class
    just create a function module that available in notepad and compare the code which u have already .
    choose the function radio button while checking the function module .
    regards
    chinnaiya

  • How to compare the *.so files of two different directories?

    Good morning,
    I am working in a software development company that works as follows:
    - we have a platform, that consists of a list of *.so files.
    - we deliver a product, based on that platform, that also consists of a list of *.so files.
    - all our sources are managed via Clearcase.
    Now I have the following situation:
    - we have created a new Clearcase view, where we (should have) all correct sources. These have been compiled, resulting in a list of *.so files.
    - we have a copy of the product that we have delivered at the client.
    I would like to verify whether the *.so files of the new Clearcase view are the same as the ones that have been delivered to the client.
    Why is this such a problem?
    - I could check the "cksum" result, but as the Solaris command "cksum" takes into account the compilation date, I have different "cksum" results for *.so files that are basically equal.
    - I could check the filesize, but a small change in a source might change the behaviour of the *.so file but not necessarily its filesize.
    - I could check the "what" result (the "C Compilation System" "what" command), which gives the Clearcase status, so that I can check whether the same Clearcase versions have been delivered, but while doing this, I have seen that *.so files have been delivered, the sources of which were checked OUT (!), so also this does not give me any certainty.
    - In addition, it is possible that there is a change in the platform components, resulting in a different product specific *.so file, which however does not mean that the behaviour of the product specific *.so file is different.
    Therefore I am looking for another way of comparing two binary *.so files, in order for me to judge the correctness of the new Clearcase view.
    Does anybody have an idea?
    Thanks
    Dominique

    Thanks Alan for the fast response,
    Unfortunately, I don't have "elfsign" on my system and reading more about the command, I have the impression that this command can verify whether a signature is correct, but in order to do so, the file needs to be signed before, which is not the case here.
    Do you have other suggestions?
    Thanks
    Dominique
    P.s. yesterday, another issue popped up: the *.so files I am referring to are compiled from a whole list of files, and it seems that the "what" command can only check the Clearcase history of the hole list, while in our department, mostly only the impacted files are checked out/checked in for doing an update, and not the hole list of files, causing the "what" command to give erroneous results.

  • The same itunes Library and playlists on the same computer with two systems

    I want to have the same itunes library and playlists on the same computer with the two different Os 10.3.9 and 10.4.9 each one on the different disk. without copy this in the itunes folder (because my library its 30Gb)
    I have the same user name on the Os. I use the same version of itunes in both systems
    I use my ipod to play the library but its not the best solution (i lost my library in ipod twice because I confused from what os was synchronized)

    Hello and Welcome to Apple Discussions. 
    Amalgamate the two iTunes libraries. Then load iTunes and hold down the Option/Alt ⌥ key and then choose "Choose Library" and then point both copies of iTunes to use the combined iTunes library.
    regards
    mrtotes

  • Using the Log Viewer for two systems on same host

    We have two Portal systems installed on the same host server.  The log viewer only identifies and displays the log files from one of the systems (A).  This is the case even though I started the log viewer while logged on as the <sid>adm for system (B).
    In the configuration of the Log Viewer, I do not see an option to have it add another "system" to the local host.
    How can I configure the log viewer to display logs from both systems installed on the same host?
    Thanks,
    Bob

    Bob,
    with the port you can distinguis between the servers. both portals should have unique ports on the same server.
    for you relevant is the P4-port.
    these settings work for remote servers:
    Name: <SID>
    Host name: <hostname of server>
    Port: <P4 Port, normally 5<SysNr>04>, you can check this at: http://<host>:<port>/sap/monitoring/SystemInfo under the Dispatcher infos
    Connection: J2EE
    User: <admin user>
    Password: <admin user password>
    kr, achim

  • How to compare the query definiation of two or more queries?

    HI Folks.
    I am attempting to determine if there is a method by which I can compare query definination of two or more queries or shows me the differences between queries. 
    Transaction RSRTQ only give the query details of single query at a time and doesnot do a comparison.
    Please let me know a method to undertake this?
    Thanks
    Uday

    There is no straight way of doing this:
    I normally open the definitions in 2 sessions and compare them manually.
    Hope this helps

  • Comparing and Asjusting data b/w two systems using SCU0 Transaction

    I need to compare and adjust data between two systems for tables T006 , T006A  . I am using Transaction SCU0 for comparison . It is giving me comparison results  , but  coz of some reason Button for adjusting data is not active for me .
    If I do the same thing using SM30 ,  Adjust button is coming after comparison  . I don't have maintinance views available for these tables otherwise i would have used SM30 . I want to do that using SCU0 only . Any idea how can I make  Adjust button active  .
    Regards

    Hi,
    Welcome to SDN !!!
    I would suggest you to please contact your BASIS Team. They will Activate the button for you.
    Thanks,
    Chidanand

  • How compare the code between two tracks in NWDS

    Hi
    We have NW04 Sp18 Portal with MSS & ESS Sp13.At present version we have made lot of custom changes.
    Now we have to upgrade ESS to Sp14. As per the JDI cook book we are going to create new track.
    After that how will we implement the custom changes to the new source code?
    Is there any way to compare the changes between these two tracks to implement the old custom changes to the new source code?
    Any tools available in NWDS to do this
    Its urgent please give your valuable information
    Thanks & Regards
    Gopal

    Hi Gopala,
    You won't like this answer, but unless you have documented all your changes very accurately, as far as I know it's basically the only option you have. Check out the content of both tracks and use a good diff tool to check the differences. Personally I use [WinMerge|http://winmerge.org/]
    Kind regards,
    /Sigiswald

  • Compare Bulk Roles

    Hi All Gurus,
    I need to compare roles between two systems.
    I know we can do in SUIM, but it allows doing just one role at a time.
    I want to do Mass role comparison.
    Is there a Program or Tool in SAP that allows Mass Role Comparison?
    Any help will be appreciated
    Thanks
    Sid

    Sid,
    I assume dual maintenance mean you are not transporting the role(s) from one system to another. You can try using the mass role download and mass role upload of role and run SUPC after upload to generate the profiles to keep them in synch.
    As far as I know, SAP does not have the report you are looking for, of course you can always develop a custom report. Many of us do that all the time. We also rely on Excel & Access to supplement reports that SAP does not provide.
    With the PFCG features (transport, role download & upload), I never have to compare same role across systems, because I only maintain the role once even for a Dual Maintenance landscape (Two DEV systems – Production Support & future phase for the project). We just have the business process to download the role(s) from one system to another right after update.
    Hope you find your solution.
    Thanks,
    Lye

  • Cannot find role SAP_SDCCN_ALL in satellite system

    Hi,
       I cannot find the role SAP_SDCCN_ALL in satellite system. The sattelite system is R3 4.7 PI 2003_1_470, PI_Basis 2003_1_620. Did anyone of you encounter the same problem?.
    Regards
    Anil

    Hi Anil,
    the role SAP_SDCCN_ALL is shipped with ST-PI 2005_1_*.
    In this ST-PI release the new transaction SDCCN is shipped first time. This transaction replaces the old SDCC. So it is quite clear that in the ST-PI 2003__ the role is not available.
    So please upgrade your ST-PI and you will get the new SDCCN.
    This SDCCN has the following new features and functions. You can send data to more then one Solution Manager.
    If you have installed the new ST-PI and you are generating then RFCs (the SM_*_BACK), the tool automatically assigns this destination to the SDCCN, so then automatically the SDCCN would ask the new SolMan for new sessions.
    Also one big advantage of the new SDCCN is, if one download is required by more then one service, this download will not be collected multiple times (reduces system load), it is collected only ones. By default a new download will be collected after 3 or 6 days, this is customizing of the SDCCN.
    So I recommend to upgrade your ST-PI
    Regards,
    uDo

  • Comparing the performance of DB's with and without DB Links

    Hi Experts
    I m using Oracle 10G. I have two databases in which the first one uses DB Links to access the other schema objects and the second one doesnot use DB links to access the schema objects instead the permission is granted users to access the other schema objects.
    I would like to compare the performance of these two databases which uses DB links and Which doesnot use DB Links. Kindly Suggest How can i achieve this?
    Thanks a lot in advance,
    Ram

    user448837 wrote:
    Hi Justin,
    I m new to this Organization and the OLD DBA's had done that and it was integrated to the older Version of the Product. After me coming in, We had a discussion and changed it which is the second DB. And in the comparison Front, Its Easy to Just RUN a query and Explain plan it with link and without link. My Real Question is that, is there any other way to measure the Comparison?.It's certainly possible that I'm missing something here, but isn't measuring execution time a pretty good metric here? It seems unlikely that an organization that thought it was a good idea to set up a loopback database link would be particularly interested in the relatively subtle changes you'd see in before-and-after AWR or ASH reports. And it seems unlikely to me that the performance problems that the loopback link created (if it did create any-- it's entirely possible that there is no performance difference at least for the queries your application is running) would be the subtle sort that you'd want an AWR/ ASH report for. It seems much more likely that the presence of a database link caused poor query plans or forced a lot of data to get sent "over the network" (though it presumably never hit the wire). Either of those should cause easily measurable execution differences.
    My wager is that you'll get a lot further with simpler metrics (i.e. previously, function X in application Y took 15 seconds, now it takes 5 seconds or previously, we could process X function Y calls per minute, now we can process 2x).
    Justin

Maybe you are looking for

  • Script for extracting multiple pages

    Hi, I'm working with the default "extract pages" script: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_A croJS.88.465.html I want to modify it to extract 2 pages at a time.  For example, say I start with a 6-page document.  I w

  • How to detect data errors?

    In applications such as healthcare, errors in data stored in a database could lead to so called Adverse Events even death of a patient. Clearly, if erroneous data could be detected then the user could be warned not to trust what is displayed. So, wha

  • XQuery Update Facility

    I see on the Wikipedia article for XQuery Update Facility, that XQilla, which BDBXML uses, implements the XQUF (not sure to which degree though). Can you utilize these commands in any XQuery, and does it require a special use of the API? Any document

  • How can I change sequence setting after done editing?

    I just finish editing one of my video project. Unfortunately, just found out the sequence I was working with was in wrong settings. I tried to change aspect ratio from HD1440 *1080 to HDTV 1080i (16:9). However, after I changed the setting, my footag

  • Can iPhoto process RAW files?

    Love to shoot digital photos.  Can iPhoto process RAW files without conversion to JPEG or problems? Or do I need to purchase Aperture?  Running OSX 10.6.8   2.66 GHZ Intel Duo Core  8 Gigs RAM only--enough for using Aperture?