UME w/MS Active Directory - Storing email address as User ID

Thanks in advance.
I am looking to store an email address as the User ID using UME and LDAP/AD.  I know that samAccountName is the UserID in active directory and it has a limitation of storing special characters like @ sign, etc.  If I want to store the email address as the user ID, what options do I have with the UME?  Is there a provision to do a data mapping or foreign key lookup??
Chris Temple
E.ON U.S.

For the question to relink the new account to the account which is already available in Project Server. You will have to update the WRES_AD_GUID to Null for the the Resource in MSP_RESOURCES table in the published database.
Whenever a users gets synchronized to the PWA his ADGUID, SAMAccountName, Display Name, Email Address and DepartmentName is Synchronized from AD to Project Server. When the user was deleted and recreated the ADGUID got changed. During the next sync, project
found the user with similar properties but different ADGUID which was updated in WRES_AD_GUID column in MSP_RESOURCES table. Hence it says that there is a duplicate account in the table with the same properties but a different ADGUID
Nullifying the WRES_AD_GUID column value in MSP_RESOURCES table should get the user synchronized to Project server in the next sync.
Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
the thread.

Similar Messages

  • How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    As with the Mail app on a Mac, the iPhone's Mail app stores all email recipients in a list of previous recipients which is separate from the address book or contacts. The email address autofill feature when addressing an message pulls from Contacts and from the list of previous recipients.
    Different from the Mail app on a Mac, there is no access to the list of previous recipients with iOS on an iPhone, iPod Touch, or iPad to remove a previous recipient from the list, or to add a previous recipient to the address book or contacts that is not already entered - not at the present time anyway.
    The only way to purge the list of previous recipients at the present time is by restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup, which will start being re-populated again with every sent message.

  • Fetch email address of user responsible in IW32

    How to fetch the email address of User responsible in IW32 transaction? OR What is the logic to get PERSNUMBER of a partner "User responsible"on the basis of work order number?

    First get the OBJNR from AUFK table
    Now go to table IHPA with the OBJNR value and PARNTER Function VU (VU is for User Responsible)
    Get the PARNR value from IHPA table.
    Now Go to Table USR21 with the PARNR from IHPA, as BNAME. Then you get the
    PERSNUMBER and 
    ADDRNUMBER 
    Now go to the Table ADR6 with the Above PERSNUMBER   and ADDRNUMBER , Get the email address .
    Thats all.

  • Maximum number of email addresses per user

    I have a need to create a single mailbox with a large number of alias email addresses. I cannot find documentation on the maximum number of SMTP addresses that can be associated with a single user. Can someone point me in the right direction. Many thanks
    in advance!
    David

    Hi David,
    I've never heard of any restrictions about this, however, base on my search, I find a similar thread mentioned this question for your reference:
    https://social.technet.microsoft.com/Forums/office/en-US/2c167213-731d-439f-855e-2dcb1ffd1d31/maximum-number-of-email-addresses-per-user-exchange-2010-sp1?forum=exchangesvradminlegacy
    One member said:
    I could see one account with 1203 SMTP addresses. I cannot add more addresses, I get an error message when I try to add more. Maybe it is the limit. I´m still researching to be sure if it is a limit or not.The exchange is 2007.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Niko Cheng
    TechNet Community Support

  • UME connected to Active Directory. How to change what fields are available

    I have successfully changed my UME to point to Active Directory. I'll describe process further on in post. My issue now is how to modify what AD fields will be available in UME and what UME fields they'll be 'mapped' to.
    I'll try to describe the process I've gone through so far:
    1) Download the 'dataSourceConfiguration_ads_readonly_db.xml' file from Config Tool
    2) Renamed file and added the following:
        a) in <responsibleFor><principal type="user"> <nameSpaces><nameSpace name="com.sap.security.core.usermanagement"><attributes> section I added a <attribute name="xxx"/> tag for each new field I wanted. 'xxx' is, of course, the name of the field
        b) in <attributeMapping><principals><principal type="user"> <nameSpaces><nameSpace name="com.sap.security.core.usermanagement"><attributes> section I added a <attribute name="xxx"><physicalAttribute name="yyy"/></attribute> tag for each new field I wanted. 'xxx' is, of course, the name of the field in UME and 'yyy' is the field in the LDAP
    Then I uploaded the new file into Config Tool and switched the "Data source configuration file" selection to that new file. Saved the change and restarted the engine.
    When I ran some test code I was getting information back from the user's AD entry. For example, I tested the email field. This is a field that is not maintained in the UME but I got the correct value back so I knew it was getting it from AD.
    Then I wanted to see if I could get one of the new fields. When I ran my test code the user.getXxx() method call returend null.
    Since I knew that getting the e-mail worked I thought I'd change the mapping for the email UME field to point to the 'yyy' field in AD. I did this by making this change:
    <b>FROM:</b>
    <attribute name="email">
        <physicalAttribute name="mail"/>
      </attribute>
    <b>TO:</b>
      <attribute name="email">
        <physicalAttribute name="yyy"/>
      </attribute>
    I then uploaded that new xml file and switched to it in Config Tool. Then I restarted the engine.
    However, when I ran my test code (see below for snippet) it still shows the email value instead of the value of field 'yyy'.
    Any help would be GREATLY appreciated.
    <b>Web Dynpro code snippet:</b>
    String input = "smith";
    IUserFactory userFactory = UMFactory.getUserFactory();
    try {
      IUserSearchFilter searchFilter = userFactory.getUserSearchFilter();
      searchFilter.setLastName(input, ISearchAttribute.LIKE_OPERATOR, false);
      ISearchResult searchResult = userFactory.searchUsers(searchFilter);
      while (searchResult.hasNext()) {
        String userID = (String)searchResult.next();
        IUser user = userFactory.getUser(userID);
        String email = user.getEmail();
    } catch (UMException e1) {
      //error handling

    Update. I uploaded the wrong file the 2nd time. When I changed the XML file to 'bind' theAD field to the 'email' UME field, my code did return the AD value when I did
    user.getEmail();
    However, I'm still not able to get the AD field bound to any other UME field that wasn't part of the default XML file.
    Is there something else I need to do besides adding the tags I described in my original entry?
    Thanks

  • Connect UME to the Active directory

    Hello,
    My UME is already connected to the portal.But I have too many users (including computers). I have 1500 users instead of only 500 users
    I want to filter some of the users. The active directory is not organized well.
    Can I bring only certain hierarchy of users, different types of users (only real-user and not computers), users who doesn't end with the char $, or any other search filter that will reduce the number of users in the portal?
    Thanks and regards
             Omer Shem-Tov

    Hi Omer
    Sorry, there's no better solution! It may be time ro reorganise your AD...
    Cheers

  • Windows 8.1 Enterprise joined to Active Directory, shows email login

    In Windows 7, I knew how to set the login default domain to Active Directory via the registry. That setting does not seem to have the same effect in Windows 8.1 Enterprise.
    I have a tablet joined successfully, and can login without any errors. The only problem I have is when it boots up, or someone logs out, the login screen defaults to the MS Live email login. We do not use that in our Domain, and I want to either disable
    that option, or set it to connect to our Active Directory servers as the first option.
    I have looked in Local Group Policy, the Registry, etc. and have not found anything that refers to that. Is it something simple that I am just overlooking?
    AKChappy

    I believe the group policy you are looking for is called "Accounts: Block Microsoft Accounts"
    You can find it here: Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options
    More info:
    http://technet.microsoft.com/en-us/library/jj966262.aspx 

  • Exchange Active Sync loses email address, phone when sync contacts

    I have a Treo 680 running Palm OS Garnet 5.4.9 and Versamail 3.5.2  Software version TREO680-1.03-CNG.   We just implemented Exchange 2007 and the phone syncs great for the email and calendar.  But, contacts are flaky.  If I add an email address to a contact on the Exchange side, it never comes to the device.  Instead, the email gets deleted on the Exchange side.   If I add it on the Treo side, the contact updates.  It appears that the contact is a one way sync and the Palm always wins!   Email and Calendar are syncing both ways??   I am syncing the tasks via the USB and that works fine as well,  Any ideas why Contacts seems to be one sided???
    Post relates to: Treo 680 (Cingular)

    The Contacts should sync both ways, your case might be contact database issue. 
    if you decide to fix it do these steps:
    READ EVERYTHING BEFORE PROCEEDING 
    1. Export your data as a .CSV fie by:
    a. click file in outlook
    b. click import and export
    c. export to a file
    d. comma separated values (windows)
    e. highlight your main contacts then hit next
    f. hit browse and locate a directory to save your file then hit next
    g. hit map custom fields, then hit default map, hit OK then, hit finish.
    After exporting Delete all your contacts, If your not comfortable with that copy all your contacts to another folder. But make sure you empty out your Contacts folder.
    On the Phone side you need to delete your email (EAS) account, so that it will also clean out your contacts. (double check if contacts are deleted, if not, a hardreset must be done)
    Bottom Line. Both Outlook and Phone Contacts must be cleared out. before proceeding. 
    When contacts on the phone are gone, set up your email (EAS) again (at this point no contacts should exist on the device and outlook)
    After sync and emails and calendar are transferred, try putting a dummy data both on the phone and outlook contacts, Sync twice then check if data transferred on both places.
    (there is no reason for it not to)
    If data in contacts are syncing Import back the contacts to outlook by: 
    a. click file in outlook
    b. click import and export
    c. Import from another program or file
    d.  comma separated values (windows)
    e. Hit browse then locate where the file was exported, highlight then hit OK
    f. Leave it in "Allow Duplicates" then hit next
    g. Highlight your main contacts then hit next.
    This should import back all you data, after thats done try to do another Sync.. 
    goodluck 
    Post relates to: Treo Pro T850U (Unlocked)
    Post relates to: Treo Pro T850U (Unlocked)

  • How can I delete stored email addresses that are not in my contacts

    Does any one know how to delete email addresses that are not in the contacts folder, with out completly wiping out my entire phone?

    Yes, just open mail and click on the window menu and select previous recipients, when the window opens start edit your email addresses.

  • Active Directory - SharePoint Replication Problem with User Information

    Hi, we have a implementation of SharePoint 2010 stand alone server, when we start to work in this server, we add the users from Active Directory services implemented in our company. This users had information like the email and department. When i add one
    user to SharePoint, sharepoint import all information user.
    The problem is when i change the email information from the user in Active Directory, this information didnt replicate to SharePoint.  The user have the new email In Active Directory and the old email in SharePoint.
    How can i replicate new one all information from the user to SharePoint?
    I hope someone can help me..
    thanks. 

    Standalone installations of SharePoint do not support the User Profile Sync Service. You'll want to use a farm installation for that functionality.
    Are you using SharePoint Foundation, Standard, or Enterprise? The UPSS only comes with Standard and Enterprise.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Cannot sign in to verify my email address(new user)

    I recently bought a ipad mini retina16gb Wf Sg.  As asked I looked for my verification email from Apple on my desktop having given my current email address.  I received the email from my ipad and clicked on "Verify Now" link & signed in with my Apple ID and password.  I then received another email with the message "Your request could not be completed.  Invalid account for the email address."
    Where am I going wrong?

    Hello, fliwons. 
    Thank you for visiting Apple Support Communities. 
    Try to verify your Apple ID via a web browser on a computer if available.  If the link is not active follow the steps in the article below to resend the verification email. 
    Associating and verifying email addresses with your Apple ID
    http://support.apple.com/kb/HE68
    If you are still experiencing issues you may need to reach out to our account security team to help you with verifying your account. 
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • Changes in Active Directory not reflected in SharePoint user info

    I have change the manager & name in Active directory but it's not reflecting in sharepoint. I found one command
    stsadm -o migrateuser
       -oldlogin <domain\name>
       -newlogin <domain\name>
       [-ignoresidhistory]
    But i don't want to do one by one i have many users is there any command for migrate all updated user information

    The migrateuser command is really only when a user's ID changes.  Making changes such as name and manager should still be reflected under the original ID.  If the changes doesn't propagate, ensure that your User Profile Service Sync completed successfully. 
    Check for errors and address any you find.  A successful sync will propagate the changes properly.
    Start here: 
    http://technet.microsoft.com/en-us/library/ff382639(v=office.15).aspx
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Additional email address for user in mountain lion server

    I have a new installation of OS X Mountain Lion server (10.8.2) that I am wanting to deploy.  The problem that I am running into now is that there is no way that I have found to add a second email address. 
    I have multiple domains so, i need to have "[email protected]" and "[email protected]" for the same user.
    Has anyone seen a way around this?

    matneyc wrote:
    Wow - just after I answer back, I found a download for the Workgroup Manager at http://support.apple.com/kb/DL1567.  I probably need more sleep.
    Yes, it is just Server Admin that is no more, Workgroup Manager is still at the moment available.
    For your information another less pleasant means would be to directly modify the Open Directory record using either the command line or the Directory Editor launched from Open Directory Utility which in turn is launched from the Login Options "Join..." button.

  • Looking for Help with Active Directory Script to Remove a User from msExchDelegateListLink

    I'm struggling to put together an Active Directory Powershell script that will remove a specific user from the msExchDelegateListLink.
    It looks like Set-AdUser would do the trick. I would want to remove a user in the format of
    {CN=Wood\, Sandy,OU=Networking,OU=IT,DC=my,DC=domain,DC=com}
    Has anyone succeeded in doing this before?
    Orange County District Attorney

    I use this:
    $user = '<user name>'
    $userDN = Get-ADUser $user | select -ExpandProperty DistinguishedName
    $delegates = Get-ADUser $user -Properties msExchDelegateListBL |
    select -ExpandProperty msExchDelegateListBL
    foreach ($delegate in $delegates)
    Set-ADUser $delegate -Remove @{msExchDelegateListLink = "$UserDN"}
    Never quite got around to putting it into a function.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Is Lightroom supported in a Active Directory domain environment with multiple users logging into a machine?

    We are a school district using an Active Directory environment.  We currently use other Adobe products with multiple users on different machines and it works fine.  If Lightroom does work in a domain environment what are the required local user permissions needed for it tor work properly?  Thanks!

    Lightroom is not a multiuser program. It is required that the catalog is located on a hard drive that is local to the machine accessing it. There are no workarounds.

Maybe you are looking for

  • Excluding & Including of STO

    Dear All,              In my Scenario I created the Independent requirement of my finish product in Plant 1000. Now i have depot 1001  where the material is received against stock transfer order created by depot on Plant 1000. After MRP & production

  • Problem exporting Quicktime 1080i

    I'm using PPro CC, sequence and footage is 1080i 29.97.  When exporting to a Quicktime H.264 file, I select the preset for 1080i 29.97.  Upon export of the file, I can re-import it, and PPro interprets it correctly as 1080i (upper field first). But,

  • InDesign CS6 exporting to Adobe PDF (Interactive)

    Created an interactive form in InDesign CS6, but when I export to a PDF file, using Adobe PDF (Interactive), the purple bar "Please fill out the following form-" is not visible in my PDF file. PLEASE NOTE: My Adobe Acrobat Pro preferences do not have

  • Not able to select Aperture library in iTunes to share on AppleTV

    I moved the Aperture Library (107Gb) to an external disk that is mounted to the iMac. In order to view the photo's on the AppleTV I need to change in iTunes in Home sharing the setting for the new location of the library. In Photo Sharing Preferences

  • Which AVI converter do I use For iMovie08?

    I searched apple.com for an avi converter and it gave me these choices: iSquint SimpleMovieX ivCD Which do I use? when I try to import my avi now, they are all greyed out