Rename SAP username - Find all references in the system

Hi all,
we want to rename (copy and create new sap user id) in our SAP system.
Now we have to find all objects and relationships where the old users are specified.
Is there a way how to find all program where the users are specified?
Z-Programs where users are specified?
Z-Customizing tables where users are specified?
Customizing settings where users are specified?
Any ideas?
regards

>
CC_BC Team wrote:
> we want to rename (copy and create new sap user id) in our SAP system.
> Is there a way how to find all program where the users are specified?
> Z-Programs where users are specified?
> Z-Customizing tables where users are specified?
> Customizing settings where users are specified?
> Any ideas?
> regards
Last time one of our user changed her last name we create new user id for her and then locked and deleted old account.
I don't think its possible to change username from all documents/objects/change documents which users has created under his/her id. The best, and the only way I think is to create new user id and delete/lock old one.
Regards,
Pawan.
PS: profile parameters and favourites can be copied from old user id to new or any other user id.
Edited by: Pawan Kesari on Aug 17, 2010 8:21 PM

Similar Messages

  • How to find references of a Property in the class through code? similar to 'Find All References' in Visual Studio Environment.

     Hello,
    I am trying to find a code to find all the references of the property defined in a class which is very similar to 'Find All References' function available in Visual Studio environment. But I want to have it in code during run time. How to do it?
    e.g 
    =>Property 1
    private int _Salary;
    public int Salary()
    get{return _Salary;}
    set{_Salary = value;}
    => Property 2
    private int _Bonus;
    public int Bonus()
    get{return Salary * 2;}
    Like in the above example I have two properties Salary & Bonus. Bonus is calculated from salary. As soon as I set a value to Salary, value of Bonus gets updated. 
    Similarly I want to get reference of all other properties or methods in the class or program which are affected when value of Salary is changed through code. 
    Conclusion - I want to have a method or function, so that whenever I set a value to some property in a class, I want to have a list of all the other properties(List<Property>) or methods which are affected and in which the changed property is referenced.
    Please help me to achieve this.
    Siddharth.Shinde

    This is not something possible, as requested, even with reflection.
    I can't find the reason for having that kind of implementation at runtime.. your compiled assembly is not going to change once it's compiled.
    The way references are listed from within visual studio is probably using metadata gathered from the background compiler. When you write code, the compiler run pre-compilation tests, this is the same feature that will display error in your code before you
    compile, or complete your intelisense for types that aren't even compiled in the assembly.
    So, the only way for you to analyze this kind of thing would be to use something like ILDASM to disasemble your compiled libraries and gather metadata from the resulting MSIL. That would not work if you are using code obfuscation by the way.

  • Good time of day! I can not activate your iPhone. Because I forgot password to bind to the device number. Kam I delete all reference to the device my apple id using the find iPhone! Thank you!

    Good time of day! I can not activate your iPhone. Because I forgot password to bind to the device number. Kam I delete all reference to the device my apple id using the find iPhone! Thank you!

    IF he can't remember his infomation he sold you a brick, get your money back and buy it from a retail store.

  • I'm trying to find all references to a domain in ISE

    We've renamed our internal domain and I'm looking for a way to find all references to our old domain so I can delete it.  I've gone through all of the authorization/authentication/etc. and it still says "Error One or more of the groups being deleted are referred to by another component..." I don't know where it's being referenced to update/remove it.
    Anyway to locate all references to an object? 

    Hello David, unfortunately there isn't such a feature in ISE. I used to do voice for a while and CallManager has a nice feature called "dependency records" which would do exactly that :)
    Here are a few places you can check and see if the AD configuration is being referenced:
     - Identity Store Sequences
     - Guest portal authentication
     - Sponsor portal authentication
     - My Device Portal
     - ISE administrative access via AD
     - Client Provisioning rules
     - Posture Assessment rules
     - Custom created authentication and authorization conditions that were saved to the library
     - Default authentication/authorization conditions in policy sets
    I hope this helps!
    Thank you for rating helpful posts!

  • Is there any standard thing in sap to find how old is the invoice or Bill.

    Hi Experts,
    i have query regading the invoice or bill.
    i.e. is there any standard functionality in sap to find how old is the invoice or bill.
    Thanks i advance,
    Roopa.K.

    Bill Number and all its corresponding dates may be seen in the table VBRK.
    Bill Document: VBELN
    Billing Date: FKDAT
    Date on Which Record Was Created: ERDAT
    Billing date for the invoice list: FKDAT_RL

  • Completely remove all references to the old MacBook

    Hello! I have a problem - after buying a new MacBook in a Safari remained tabs from the old MacBook, and iPhone attempts to synchronize with the old MacBook. Before the sale of the old MacBook I untied it from my Apple ID, and removed him to the icloud.com website under "Find iPhone", but he still stayed there in my devices on the same site ... Help to completely remove all references to the old MacBook. Thanks in advance and excuse me for my english ...

    Is this the problem?
    How do I disable Bing?
    If you just want to use a different search engine it's easily selected:
    ... but I sense this is not what you're asking.

  • I copied a form , now all references to the used logic have disappeared. How can i get these back?

    I copied a form in Formscentral, now all references to the used logic have disappeared. How can i get these back? I am using a subscription based version.

    Hi;
    You want to "Duplicate" the form in order to retain all of the Show/Hide logic.  If you "copy" the form by copying and pasting all of the fields from within a form that does not retain the Show/Hide logic. 
    To Duplicate a form close the form and select it in the "My Forms" tab, you can either choose "Duplicate" from the context menu or click the button on the toolbar along the top:
    Thanks,
    Josh

  • Program that finds all servers on the net 76-lines

    Hi Guys and Birds,
    Here's a small program written by the dear brothers Asger (hjerl.dk) and Morten (www.mycgiserver.com/~game) which finds all servers on the net in a couple of hours. Good luck
    package com.hjerl;
    import javax.swing.*;
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import java.util.*;
    public class Browser extends JFrame {
    int counterwww = 0;
    ArrayList visitedUrls = new ArrayList();
    ArrayList links = new ArrayList();
    public static void main(String[] args) {
         Browser b = new Browser();
    public Browser() {
         fetchLinesInPageAsArrayList("www.jp.dk");
         System.out.println("Number of links found: " + counterwww);
    private void fetchLinesInPageAsArrayList(String str) {
         ArrayList al = new ArrayList();
         try {
              URL url = new URL("http://"+str);
              URLConnection uc = url.openConnection();
              uc.connect();
              InputStream is = uc.getInputStream();
              BufferedReader br = new BufferedReader(new InputStreamReader(is));
              int c = 0;
              while (br.ready()) {
                   al.add(br.readLine());
              findLinksFromLineArrayList(al);
         catch(Exception ex) {
              ex.printStackTrace();
    private void findLinksFromLineArrayList(ArrayList al) {
         for (int c = 0; c < al.size(); c++) {
              String s = ((String) al.get(c)).toLowerCase();
              //int a = s.indexOf("http://");
              int b = s.indexOf("www.");
              int d = s.indexOf("/", b+4);
              if (b == -1 | d == -1)
                   continue;
              String link = s.substring(b,d);
              //fjerner evt.""
              int e = link.indexOf("\"");
              if (e != -1) {
                   link = link.substring(0, e);
              if (links.contains(link) == false)
                   System.out.println("New link found: " + link);
                   links.add(link);
                   counterwww++;
                   fetchLinesInPageAsArrayList(link);
              else
                   System.out.println(" Old link found: " + link);
    }

    Well, apart from the "finds all servers" bit and the "in a couple of hours" bit, that sounds quite plausible...

  • I can no longer hold down a key and get the character to repeat as say, aaaaa. Instead I get a menu of accented a's, such as àáâäæãåā. I can't find any thing in the System Preferences that allows my to turn this function off

    I can no longer hold down a key and get the character to repeat as say, aaaaa. Instead I get a menu of accented a's, such as àáâäæãåā. I can't find any thing in the System Preferences that allows my to turn this function off.

    Back up all data before proceeding.
    Please triple-click anywhere in the line below on this page to select it:
    defaults write -g ApplePressAndHoldEnabled NO
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered. You can then quit Terminal. Log out or restart the computer.

  • One Library for all users on the system - Sharing?

    Hello.
    I'm using iTunes 9.0.3 on OS X 10.6.2. On this system, there are TWO users, one for my wife, one for me. I'd like to "merge" the seperate iTunes libraries, so that there's only one shared library for all users.
    How could this be achieved?
    Searching the web, I found a writeup on [dougscripts.com by Paul Whitey|http://dougscripts.com/itunes/itinfo/sharedlib.php], which basically explains to move ~/Music/iTunes to /Users/Shared/iTunes and making sure that there's an alias in ~/Music pointing to /Users/Shared/iTunes. It also explains, that the ownership of the files & folders is to be changed so, that all users have read & write access. This then looks like this on my system:
    !http://img214.imageshack.us/img214/6223/fileinfowithbothusersha.png!
    -> http://yfrog.com/5yfileinfowithbothusershap
    It works good - both "alex" and "sandra" can work with these files (ie. move them, rename them, change ID3 tags).
    But see those:
    !http://img714.imageshack.us/img714/2183/fileinfowithonlyalexhav.png! !http://img686.imageshack.us/img686/7807/fileinfowithonlysandra4.png!
    --> http://yfrog.com/jufileinfowithonlyalexhavp & http://yfrog.com/j2fileinfowithonlysandra4p
    That's from files which sandra or alex have added later on. Only the one who added these files can modify them (which is of course correct, if you have a look at the file permissions).
    How would you go about having only ONE iTunes database on the system? Simply putting the iTunes Db on a shared folder doesn't work well, as can be seen above. Always having to fiddle around with the file permissions isn't exactly comfortable…
    Any suggestions?
    Thanks,
    Alex

    Hm. PowerTunes crashs, when I make it Share my library. I pasted the crash report at http://pbox.ca/13gwy
    Since I cannot know how/if would work (because of the crash…), please correct me if I'm wrong, but wouldn't it also just move the files to /Users/Shared and set permissions correctly? Wouldn't I need to keep on running PowerTunes from time to time, or is it "run once and forget" application (if it works)?

  • How to find all z-programs in system using spars field in select  ???

    hi all,
       i have to make change in all program in my system in which spars field is used in select statement. how to fin all those z-programs
    points will be awarded for all useful answers.
    Regards
       Deepak Kumar

    run the report RPR_ABAP_SOURCE_SCAN, give 'z*' in "Program name" field, and 'SPRAS' in "Find string" field, u'll get to know the places where SPRAS is used, modify those programs accordingly....
    Reward points if useful, get back in case of query...
    Cheers!!!

  • How to find upgradable packages in the system?

    After each `pacman -Sy' synchronization, is there a easy way to find out what packages in the system are upgradable?

    Doing a
    pacman -Syu
    will sync up with the repositories and then upgrade all the packages on your computer that need upgrading. It will display all the packages that need upgrading and ask you if you want to upgrade them, so you can exit without upgrading if you change your mind.
    Be sure to check out the pacman wiki and the wiki and forums if your unsure about programs in the future.
    Edit: wow, beat me to the punch

  • Paralled query taking all slaves in the system

    This query takes all the slaved in the system...
    i tried using the not exists, still takes all slaves.. although it shd take only 8 (/*+ Parallel(b,8) */)
    any help?
    how to tune this? reduce the number of slaves?
    SELECT /*+ Parallel(a,4) */ distinct a.dept, a.location
    FROM Hist a
    WHERE date_pos between (select eom_date+1 from system_variables)
    and (select next_eom_dt from system_variables) AND tran_code= 11
    MINUS
    SELECT /*+ Parallel(b,8) */ distinct b.dept, b.location
    FROM reference b WHERE tran_code= 11

    We need sample data to evaluate SQLs
    *009*

  • Get all invoices from the system and their details

    Hello Experts,
    Whats the most efficient FM to use for getting all the invoices in the system with details to transfer them to an external system?
    Should I get a list of all invoices and then call BBP_PD_INV_GETDETAIL on each?
    Thanks,

    Hello,
    You can use the Function Module "BBP_PD_INV_GETLIST" to get all the invoices from the SRM system.
    Regards,
    Mani

  • Script for adding a login item for all accounts in the system

    Hi,
    Thanks for reading this query. I am new to the mac environment. I have developed a java application and created an installer of this application for MAC system.I want to run this application on starting the system. So I have written an apple script for adding this application in login items and this script will run immediately after completing installation process. And the entire process is fine. But the problem is, the application is added to login items of only the user who installed the application. But I want to get available the application in the login list of all accounts created in the system. How can I achieve this? Once more thanks in advance. I am attaching my script below:
    +*tell application "System Events"*+
    +* make login item at end with properties {path:"/Applications/MyApplication.app", hidden:true}*+
    +*end tell*+

    Hi,
    Try to use tables RSOSFIELDMAP, RSDSSEGFD and RSTRAN
    Hope it helps
    bhaskar

Maybe you are looking for

  • TS3694 error code 3014

    need some help with this error code pls ?? my ipod touch will not charge properly on its docking station and when i put it on itunes to restore it comes up with this error code 3014

  • Firefox Metro Win8 beta 28 not working

    Installed/upgraded Firefox v27 to v28beta to try out the Windows 8 Touch version on my Surface Pro 2. Relaunched via menu link in desktop version. Opened up in Metro on my home page Google, but no menu bar anywhere. Closed and reopened using Metro ic

  • 9i OEM won't connect

    My OEM has stopped working and I'm not sure why. I can open it, but when I try to connect to a database it doesn't do anything. I can open SQL*Plus through OEM, and it does connect. Has anyone seen this before? Thanks, Pete OEM Version 9.2.0.1.0 Prod

  • How do I avoid duplicates when using "Automatically Add to iTunes"

    I recently consolidated all my music and then created a new library in iTunes. Now I'm using the "Automatically Add to iTunes" folder when I find more music from my archives. However, unlike when importing from a CD, iTunes doesn't seem to compare to

  • How will we sync when Windows 10 removes Media Player?

    Good matter to raise.  Presumably, using 3rd-party sync software such as Winamp, etc.  (But I don't know if Windows Media Player offers things that the 3rd-party software does not.)