Deleted User Full Name

Hi,
I could get past histroy of deleted user using SUIM using user SAP_ID.
But I need FULL Name ( First, Middle and Last ) of the user id I am looking for.
Is there anyway to the full name as it was in User master record after deletion?
Thanks,
Sam

Hi Sam,
Try this thing out. Recreate the user id in SU01. You will get the message that Address Data for the user id already exisits. Do you want to continue. Go for this option and user id address data will be automatically filled. Here you can find his full name.
Please award points for useful answers.
Regards.
Ruchit.

Similar Messages

  • Import user full name

    Hi, I am using ZCM10.3 in win2003. Now I would like to create a ldap import task to import the user full name according to the login name field in ZCM.
    Key: name\account=loginname\device
    mapping:displayname\user-->desplayname\user(ADF)
    However, I cannot successfully import the information and I check the manual and it mention "All workstation-based LDAP fields can be mapped only to the ZENworks Inventory fields belonging to a Device class. Similarly, all user-based LDAP fields can be mapped only to the ZENworks Inventory fields belonging to a User class".
    Maybe my mapping is not correct but it make me confused because ZCM classified login name as workstation that cannot be import. Does anyone know how to fix this problem?
    HK

    Unfortunately the LDAP import isn't really useful, IMO because of the restrictions between user/user and device/workstation.
    The only thing I can think of is to use a Bundle to write a registry key that will populate the full name (possibly) pulled from AD/eDir and then use the Data Collector in Asset Inventory to populate maybe "Entered User" with the full name?

  • Report that gets full name from the users id in the computer name

    I don't even know if this is possible, but I am finding that quite often of late I am needing to get the users full name from the computer name.
    We have a standard where a computer name is in this format XXXXXXXUSERID.
    Is there a way to get the Full name from the USERID that is in the computername (not last logged on user).
    I am fairly sure that I might be able to work it out in SQLSMS but I really need it on the web reports form SCCM.
    If anyone has any ideas please let me know.

    Thanks, I want to add it to most my reports but this is the main one that I am using right now due to an audit. 
    SELECT DISTINCT
    CS.Name0 AS 'Computer Name', CS.Domain0 AS 'Domain', CS.UserName0 AS 'User', BIOS.SerialNumber0 AS 'Bios serial',
    SE.SerialNumber0 AS 'System Enclosure serial', CS.Manufacturer0 AS 'Manufacturer', CS.Model0 AS 'model', OS.Caption0 AS 'OS',
    RAA.SMS_Assigned_Sites0 AS 'Site', RAM.TotalPhysicalMemory0 AS 'Total Memory', SUM(ISNULL(LDisk.Size0, '0')) AS 'Hardrive Size',
    SUM(ISNULL(LDisk.FreeSpace0, '0')) AS 'Free Space', CPU.Name0 AS [CPU Name]
    FROM dbo.v_GS_COMPUTER_SYSTEM AS CS RIGHT OUTER JOIN
    dbo.v_GS_PC_BIOS AS BIOS ON BIOS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_SYSTEM AS SYS ON SYS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_OPERATING_SYSTEM AS OS ON OS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_RA_System_SMSAssignedSites AS RAA ON RAA.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_X86_PC_MEMORY AS RAM ON RAM.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_LOGICAL_DISK AS LDisk ON LDisk.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_PROCESSOR AS CPU ON CPU.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_SYSTEM_ENCLOSURE AS SE ON SE.ResourceID = CS.ResourceID
    WHERE (LDisk.DriveType0 = 3)
    GROUP BY CS.Name0, CS.Domain0, CS.UserName0, BIOS.SerialNumber0, SE.SerialNumber0, CS.Manufacturer0, CS.Model0, OS.Caption0, RAA.SMS_Assigned_Sites0,
    RAM.TotalPhysicalMemory0, CPU.Name0
    What I really want to do is add another column called owner that just has the UID in it, I will then try to pull the users full name into another column.. hopefully I am not biting off more then I can chew with this but i have thousands of records and i
    will be forced to export to excel or something then look up all the names if I can't do this...

  • Output a user's full name in SCCM

    All,
    I am looking for a way to output our users' Full Name in a query that I am writing.
    So for instance, I can compose a query which shows the computer name, memory installed, processor installed, version of windows, last logged in username, etc ... but I would like to also output not just the user's username, but their Full first and last name as well.
    Does anyone know how to do that?
    Thanks,
    Systems Admin

    Hello Bree08,
    Thank you for posting.
    This forum is focus on management questions of Windows Server system. From your description, it seems that demand can be achieved by SCCM. For better and accurate answer to the question, I would like to suggest you initial a new thread in one of our System Center Configuration Manager forum. The support professional and community members there are more familiar with it and can help you in a more efficient way.
    System Center Configuration Manager
    http://social.technet.microsoft.com/Forums/en-US/category/configurationmanager
    Hope this can be helpful.
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • How do I convert a full name to firstname lastname

    I need to parse some text that I have in a DB. I have over
    5000 records to output, so I am hoping something will be
    effiecient. However, it is a one time process, so it is not that
    big of a deal.
    I have a field 'fullName'. It contains a users full name (as
    the name implies). I need to output this so that the 'firstName' is
    in one field and the 'lastName' is in another field. The entries
    range from 'Jim Smith' to 'John C. Dvorak Jr.' (not really John,
    but I wanted to keep this interesting).
    In the case of John, I need the first name and Middle initial
    to end up in the 'firstName' field and everything else in the last
    name field.
    I tried to loop over using a space as the delimeter, but that
    just sepeates everything into parts. I need the middle initial to
    hang with the first name and anything trailing the last name to
    remain there.
    Any clever thoughts? Help is much appreciated.

    ok, try this:
    <cfoutput query="getUsers">
    <cfset numelements = listlen(getUsers.fullName, "
    ")><!--- this will give you number of elements in fullName
    --->
    <cfif numelements is 2>
    <cfset firstname = listfirst(getUsers.fullName, "
    ")><!--- assign first element to firstname --->
    <cfset lastname = listlast(getUsers.fullName, "
    ")><!--- assign last (2nd) element to lastname --->
    <cfelseif numelements gte 3><!--- 3 or more elements
    in fullName --->
    <cfset firstname = listgetat(getUsers.fullName, 1, " ")
    & " " & listgetat(getUsers.fullName, 2, " ")><!---
    assign elements 1 and 2 to firstname --->
    <cfset lastname = right(getUsers.fullName,
    len(getUsers.fullName) - len(firstname) - 1)><!--- assign the
    rest of the string (less the space separating 2nd and 3rd elements
    [the -1]) to lastname --->
    <cfelse><!--- 0 or 1 elements in fullName --->
    <cfset firstname = getUsers.fullName>
    <cfset lastname = ''>
    </cfif>
    </cfoutput>

  • Can't Change Account Full Name

    In System Prefs > Users & Groups,
    The text entry field to change the User's Full Name is no longer there.  Does anyone know how to change the User's Full Name? in OS 10.10?
    At the moment, my user full name is "Philip's MacPro".  Before the upgrade it was just my first and last name.  Don't know how I managed to change it but I want to change it back.  Any ideas?

    Many thanks!  That did the trick

  • Can you change the "Full Name" of a BO account

    We have a user who has changed their surname. We can rename the Account Name but the Full Name is greyed out and I cna't see anyway I can change this.
    How have you handled such name changes (it may even apply if you have setup an account name and made a spelling error).
    With thanks
    Gill

    Gill,
          Looks like your CMS is integrated with some sort of 3rd party security like LDAP, AD &/or SAP.  If you want the option to change/update users FULL name then you must un-check that option.
    See example for SAP Integration where the FULL Name, Email setting are NOT being imported over from SAP.
    Regards,
    Ajay

  • DLU - Full name not inserted, using the username instead

    Hello,
    I'm having issues with any DLU I've created through ZCM 10.3.1 where I use the USER-SOURCE as source for the credentials the DLU must create.
    - The backend is eDirectory 8.8 SP5? (newest available for SLES 10 SP3 x86_64 with OES2 SP2)
    - The ZCM servers at the moment uses the ADMIN account to read the backend eDirectory to be sure its no issues related to rights.
    The DLU(s) creates the user(s) on the local workstation and is able to log in and off without issues. The only related error I can find in the log is:
    ZMD - No user daemon registered - Will try starting it.
    ZMD - ZenNative.StartUserDaemon(0) returned 1245
    Any thoughts on what this might be caused by?
    Kind Regards,
    Rune "TheFlyingCorpse" Darrud

    Originally Posted by Michael_Fleming
    You mean the fullname on the local Windows account is not populated? What about the description or anything else? What happens when you browse the user source in ZCC, can you read the users fullname there?
    The Full Name field is populated, with the username, cn, not the Users Full Name.
    It only appears as though the Full name that I see through ConsoleOne is not the same as what ZCC see's as the full name.
    Do you know what attribute that might be named? I thought it was straightforward considering they're both Novell products and has a history together :)
    Example:
    Code:
    User in eDirectory:
    Full name=Thomas Peterson
    cn=cpet
    User on local workstation:
    Full name=cpet
    cn=cpet

  • How to show full name of user in crystal report

    Hi. I am using Crystal Report 2008. I need to show full name (first name and last name) of the user logged in. Currently I am using "currentceusername" but it shows the user id that a user uses to login.
    Is there any way to show the full name of the user in crystal report?
    Thanks in advance.

    Hello,
    Not you H4... Can I suggest if someone replies to actually add something of value!!!!
    Cr does not have the ability to query your AD Server. What you would have to do is use a AD query tool or Export Option and export the user info from the log on ID into a Excel or an Access table or something CR could report off of. Then you can add a subreport to get the name from the ID and insert it into the main report.
    Check with your IT department, they should have tools to get the info. I'm not sure if there is a DB connector that would allow you to query the AD server directly but if there is one and it supports ODBC then you can use that as your subreport Data connection.
    Typically names do not change that often so rather than running the Query every time the report is generated it would be better to export the info to a text type file and simply use it for your report. IT can put a rule on to export if the Names change.
    Thank you
    Don

  • Full Name(USR_FULL_NAME) is not showing up in User Defn of  "OID Process"

    I have made the "Full Name" (USR_FULL_NAME) field visible under section "Basic User Information" by going to OIM-UI -> Advanced -> User Configuration -> User Attribute. Note that this 'Full Name' field is not same as out of box 'Common Name' or 'Display-Name'. This is not based on First-Name & Last-Name combination, but a user editable field.
    When I configure pre-pop adapter or "OID User" process, I do not see this field in "User Definition" drop-down list. I see all the corresponding fields of USR except this one field. What could be going wrong here ?
    Thanks!
    Kabi

    Thank you all.
    Note that, I can see the "Full Name" in create user screen and able to enter data for this field. However, I do not see this field in 'User Definition' drop down list when I try to map it in a pre-pop (or oidMODIFYUSER) adapter.
    I checked the attribute lists of all OOB 'Authorization Policy' involving "search user" permission and found the 'Full Name' is already selected. What else I should be looking for ?
    Thanks!
    Kabi

  • Displaying user's full name with content

    How would I best set up an attribute to display the user's full name with a published item?
    The default 'author' attribute only displays the login name.
    I have an idea how to set up a custom attribute of the PL/SQL type, but am unsure if there already exists a procedure to fetch the current user's full name.
    Thanks

    For any item type, define an item type procedure. Pass the author attribute to the procedure. The procedure will need to call the WWSEC_API.PERSON_INFO(P_USER_NAME) function, which returns a record containing all the columns in the WWSEC_PERSON table.
    In pseudocode, your procedure will:
    declare a record based on wwsec_person%rowtype
    call wwsec_api.person_info to populate the record
    use htp.p to display the wwsec_person.first_name and wwsec_person.last_nameTo show the results of the item type procedure, display the "Associated Functions" attribute in the region properties.
    Regards,
    Jerry
    PortalPM

  • Table for user's Full Name

    Hello everyone, this is my first post in this great forum, well my doubt is about full name for any user, for example mi id is cventuro , where can i fin my full name (Carlos Venturo), in wich table, i looked in usr* with no success.
    Thanks in advance.
    pd. sry for my "english" =p

    Hi Carlos,
    Welcome to SDN.
    For your user's name you need two tables.  The first is USR21, from which you get PERSNUMBER and ADDRNUMBER, which you then use to read table ADRP.
    You could also use function module BAPI_USER_GET_DETAIL.
    Regards,
    Nick

  • User´s Full name is displayed when sending email from Blackberry device

    Dear readers
    Im working with BlackBerry_Enterprise_Server_for_IBM_Lotus_Domino and the problem is that  
    When I am sending email to other users outside, the reciver sees the full name not the email adress.
    . I mean, when I am sending email to other people my details goes like Peter White/Director/Company not with my e-mail [email protected]
    Please..can anyone help me
    Best regards

    Right, I may have misunderstood what you meant by download to desktop. When I click the attachment, I can either "Open with: Text Edit (drop-down menu)" or Save. But save doesn't save to desktop. I can "Open with: Microsoft Word" fine.
    When I compose an email, I click attach. I select the file that is in a .docx format. It appears to load to the email correctly, and if I click that extension, it opens correctly in Word out of the pre-sent email. After being sent, it appears in god knows what format and wishes to open from TextEdit.
    Was I doing something wrong when you wanted me to download to desktop?

  • User creator is not registering full names. Any ideas?

    On our setup, the helpdesk admin (me) enter the names manually through the settings page.  I will set this up in the helpdesk, settings, user accounts page.

    Whenever someone submits a ticket through our servers, some people have their names entered in the form of emails rather than their full name. For example, in the picture attached, Aaron and Maureen have their first and last name automatically filled out. (I covered their last name for confidentiality) and then for lweston@(company email), it does not automatically fill in their full name.
    Would anyone have any idea how to fix this? I apologize if this question may seem confusing
    This topic first appeared in the Spiceworks Community

  • Deleting User Name & Data

    I have an deleted admin user on my Mac, but need to know if I can permanently delete the user name and the home files data (my son)? When he deleted his account, he didn't delete his files and I don't want to accidently lose my files.

    You can remove a deleted user account without losing your files. If the account has already been deleted then navigate to the /Users/ folder and look for a Deleted Users folder. Drag the folder to the trash then empty the trash.
    If the account has not yet been deleted then open Accounts preferences from your admin account, click on the lock icon and authenticate, select the account you wish to delete and click on the ,Delete [-] button. Select the option to completely remove the account.

Maybe you are looking for

  • How to stop a web service inside a deployed EAR in Weblogic 10.3

    Hi, I want to stop a webservice from the weblogic UI console in Weblogic 10.3 but cannot find any link for the same kindly help me on the same. Scenario is as follows I can see my EAR deployed under Deployment tab, when I expand the same I can see th

  • Messages from topic to multiple consumers are not ordered the same way

    Hi, We have a distributed topic. The message producer is a multi-threaded/connection producer (OSB in our case). On the other side of the DT there are single connection consumers. Our problem is that the consumers sometimes recieve the messages in di

  • String to Unicode

    Hi . I have a string like "Hello " I wantto convert this to unicode sequence like this . "\u65e5\u672c\u8a9e\u6587\u5b57\u5217" How can I do it ?

  • IPOD NANO NOT SHOWING ON I TUNES

    I Pod not showing have tried to download i tunes 10 but it gsays check if this is correct and will not go any further.

  • How To Install Gallium Nine + DRI3 + Patched Wine ?

    I have AMD A8-6410 APU and games with wine works fine using 9 plus dri3. When I was using Kubuntu, Installing it was pretty easy with PPA. Now I am using Arch and I want to use 9+dri3 and patched wine to play games again, but I don't know how to do i