Invitation to Share a Calendar Shows UID Instead of User Name

Hello Everyone!
My Open Directory users are able to share calendars to eachother, however when the invitation comes through to be accepted, instead of Calendar saying:
"Tim Timmers" invited you to a shared calendar.
it says:
/principles/_uid_/9BBCC.....etc./ invited you to a shared calendar.
Essentially the user name is being replaced with the UID of the user's calendar data location when viewing the invite.
Has anyone encountered this same issue or have any clues to how to fix this?
OD is running, users have proper email addresses associated with their OD account and the invitation can be accepted like normal.
We're running OS X Server 10.8.2, server app 2.1.1
Thanks for the help!

(Me too post)
I have the same issue in two different environments/networks. The first is just as you describe, an OD with networked accounts, the other network has only server local accounts.

Similar Messages

  • Why when an invitation to share a calendar is accepted does it appear as tentative and not show up in calendar list?

    I've sent an invitation to shar a calendar.  The invitation appeared in receiver's notifications and was accepted. However, the calendar is not appearing on the receiver's calendar list, and when I check my "sharing settings" the address is not checked as received by appears with a question mark to indicate tentative. How is that even possible when the invitation is only decline or accept?  I sent the samereceiver an invitation to a different calendar at the same time.  It was received, accepted and appears on the calendar list with a checked box and so appears on the receiver's calendar.Both calendar invitations were sentfrom the same computer, from the same sender, on the same day to the same receiver.  Both appeared in the receiver's notifications, both were accepted, one successfully and the other not.  Help.  I'm out of ideas.

    personalg33k wrote:
    Sorry if my explanation of the problem was not clear, but the HD's are fine. I have checked them using fsck, disk warrior, TechTool Pro. they are fine. The drives are not showing up at all, and SATA shows "no information" Once in a while SATA will start working again briefly, then just GO AWAY! And the PCI SATA card I installed acts the same way. I am leaving one HD in the logicboard and one in the PCI card and they both go away (not the whole PCI card, just the HD).
    Thanks for the reply.
    OK, since you are also having things go away with the PCI SATA controller, this could be a problem with either (a) PCI-X bridge or (b) the U3 Memory controller, as they are the two things in the chain between the CPU and where you are having the problems.
    Do you have other PCI cards in use? If so, then if you lose contact with them, that would be a clue.
    On the other hand, you seemed to indicate that even when the Tempo lost the HD, you could still see the Tempo in System Profiler? If the Tempo is still shown in profiler, then, we have a real mystery on our hands. Of course, a system log file wouldn't help because you have lost it, unless you are booting from an external FW drive.
    Watson, the game is afoot.

  • When there is call on Lync IM, instead of user name SIP address is displayed.

    Lync: User name of instant message.
    When there is call on Lync IM, instead of user name SIP address([email protected]) is displayed on Office365.
    In February I was guided that it was temporary problem, however again there is problem that SIP address is displaying all the time.
    Inquiry content are mentioned in separate sheet ■SIP address is displayed when IM is called, is it specific, however if one can view user name, Let me know the best way and please confirm this.
    Thanks in Advance.

    I'd ask them over here.
    http://social.technet.microsoft.com/Forums/lync/en-US/home?category=lync
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • How do I resend an invitation to share a calendar after the person initially declined?

    I wanted to share a calendar with my wife, and sent her a invitation to share, but then realized I wanted to change the name of calendar beforehand, and asked her to decline the request. After I changed the name and resent the request, iCalendar (on my laptop, and on icloud.com) immediately changes the invite to declined. It would seem that after one decline, the system is thinking the invite is spam or something and is blocking the request from going through.
    Is there a way to reset this so that I can send a new request?
    Thanks.

    Easiest way (after having to deal with this issue myself), is to go back into the event, remove the invitees completely, and save the event.  Then open the event back up, and add the invitees once more, and save the event.  They'll then receive a brand new invite for the same event, with any changes that you've made.

  • Calendar shows task always in user-timezone

    Hi,
    First a short introduction in my problem:
    I've implemented a calendar which should view these 3 Tasks:
    - 6.5.2008   00:00 -  6.5.2008 23:59   Task 1 (1 day duration)  in UTC
    - 7.5.2008   00:00 -  8.5.2008 23:59   Task 2 (2 day duration)  in UTC
    - 5.5.2008   00:00 -  9.5.2008 23:59   Task 3 (5 day duration)  in UTC
    The Demo User which logs in has TimeZone "Europe/Berlin". The Calendar has a dropdownbox where the user can select either "Facility" or "My TimeZone":
    In "Facility" the User should see these 3 Tasks in UTC an not in his own timezone (all tasks from 00:00 to 23:59).
    In "my timezone", he should see the 3 Tasks in his TimeZone (Europe/Berlin is UTC+2h at the moment) --> so the tasks are always from 02:00 - 01:59 for him.
    The Problem:
    When the sap.authentification is enabled and a user logs in, the "Facility" never shows me this Tasks in UTC. The Task is always shown in his timezone (02:00 - 01:59). But I have set UTC anywhere.
    In "my timezone", where i load the current user-timezone its shown from 00:00 - 23:59.
    I have absolutely no idea why the context element shows this always in user timezone
    (_context element "timezone" of the Calendar view is bound to my attribute "zeitzone"_)
    Here is the code part - I've debugged already. Everywhere is set UTC, but the Calendar always shows in userTime.
    private void fillCalendar(String zeitstring) //
           deleteEntries();
            // check which mode is selected
            if (zeitstring == "Facility")
                // default should be UTC
                zeitzone = TimeZone.getDefault();
                zeitzone.setID("UTC");
                zeitzone = TimeZone.getTimeZone(zeitzone.getID());
                TimeZone.setDefault(zeitzone);
                // calenderinstanz in UTC
                Calendar calendar = Calendar.getInstance().getInstance(zeitzone);
                CctDate firstVisibleDate = new CctDate(new java.sql.Date(calendar.getTimeInMillis()));
                Time myTime = Time.valueOf("00:00:00");
                CctTime firstVisibleTime = new CctTime(myTime);
                // determine the startdate and starttime for the calendar
                wdContext.currentContextElement().setFirstVisibleDate(firstVisibleDate);
                wdContext.currentContextElement().setFirstVisibleTime(firstVisibleTime);
                TimeZone tz = TimeZone.getDefault();
                IECCalendarInterface calendarInterface = new ExampleCalendarEntrySupplier();
                List calendarEntries = calendarInterface.getCalendarEntries();
                int i = 0;
                zeitzone = TimeZone.getDefault();
                for (Iterator iterator = calendarEntries.iterator(); iterator.hasNext();)
                    ECCalendarEntry entry = (ECCalendarEntry) iterator.next();
                    CctCode timeZoneCode = new CctCode(tz.getDisplayName(), null, null, null, null, null);
                    CctDateTime startDate = new CctDateTime(entry.getMStartDate(), timeZoneCode, new Boolean("false"));
                    CctDateTime endDate = new CctDateTime(entry.getMEndDate(), timeZoneCode, new Boolean("false"));
                    i++;
                    zeitzone = TimeZone.getDefault();
                    createEntry(startDate, endDate, entry.getMTitle(), entry.getMDescription(), WDTableCellDesign.valueOf(i));
            else if (zeitstring == "My TimeZone")
                ISessionContext context = SessionContextFactory.create();
                zeitzone = context.getCurrentUser().getTimeZone();
                TimeZone.setDefault(zeitzone);
                Calendar calendar = Calendar.getInstance().getInstance(zeitzone);
                CctDate firstVisibleDate = new CctDate(new java.sql.Date(calendar.getTimeInMillis()));
                Time myTime = Time.valueOf("00:00:00");
                CctTime firstVisibleTime = new CctTime(myTime);
                // determine the startdate and starttime for the calendar
                wdContext.currentContextElement().setFirstVisibleDate(firstVisibleDate);
                wdContext.currentContextElement().setFirstVisibleTime(firstVisibleTime);
                TimeZone tz = TimeZone.getDefault();
                IECCalendarInterface calendarInterface = new ExampleCalendarEntrySupplier();
                List calendarEntries = calendarInterface.getCalendarEntries();
                deleteEntries();
                int i = 0;
                for (Iterator iterator = calendarEntries.iterator(); iterator.hasNext();)
                    ECCalendarEntry entry = (ECCalendarEntry) iterator.next();
                    CctCode timeZoneCode1 = new CctCode(tz.getDisplayName(), null, null, null, null, null);
                    CctDateTime startDate = new CctDateTime(entry.getMStartDate(), timeZoneCode1, new Boolean("false"));
                    CctDateTime endDate = new CctDateTime(entry.getMEndDate(), timeZoneCode1, new Boolean("false"));
                    i++;
                    createEntry(startDate, endDate, entry.getMTitle(), entry.getMDescription(), WDTableCellDesign.valueOf(i));
    Thank you,
    Daniel
    Update:
    I've tried to fix the problem nearly the whole day.
    I've debugged the fillCalendar()-Method while inserting the first Task:
    - Default Timezone is "UTC"!
    - zeitzone.ID and tz.ID are always set on "UTC"
    - timeZoneCode is "Koordinierte Universalzeit null null null null null" (koordinierte Universalzeit is German for UTC )
    - startDate : "06.05.2008 00:00:00 Koordinierte Universalzeit false"
    - endDate: "06.05.2008 23:59:00 Koordinierte Universalzeit false"
    - calendar.zone.ID is set to "UTC"
    ---> The Calendar shows the task from 06.05.2008  02:00 to 07.05.2008  01.59
    Somewhere must stand my timezone and the calendar refuses to display the view in UTC!!! But where?
    Edited by: Daniel Mler on May 8, 2008 3:31 PM

    Hi Frank,
    Thanks for your reply.
    You can now look only at the code in the first IF-Condition: (Facility)
    I've just tried to replace "UTC" with "CST"... in debugger he calculates me the new times:
    startDate: 13.05.2008 05:00:00 Zentrale Normalzeit false
    endDate: 14.05.2008 04:59:00 Zentrale Normalzeit false  It works...
    The problem is only that the calendar contextelement doesn't set this new time now. It creates the task from 7:00 to 6:59 .... 2 hours later.
    These 2 hours are the difference from myTimeZone (the user i logged in: Europe/Berlin = UTC+2h) to UTC.
    So I want that the default timezone of the calender is UTC and not the timezone from the logged in user.
    But I can't logon without user (then it works!) because I need the User for another functionality (myTimeZone)

  • Menu bar shows icon instead of application name

    For an unknown reason, my menu bar now shows an icon for the application in the open window instead of the name of the application.  For instance, when I switch to the Finder, the smiley face is in the menu bar next to the Apple menu.  How can I return to have the application name shown?

    If you are looking for tech help with a third party application contact the developer. These forums are for Apple hardware and software as per the
    Apple Support Communities Terms of Use.

  • How to show the First and Last name of the user instead of user name

    Gurus,
    We have the full email id of the user as the portal user name. Right now we are using the "Item Attributes - Current User" to show the user name. We don't want to show this anymore. We would like to show the First and Last name of the user on the Portal page. How can i do this. Please post a reply if you have some idea about it.
    Thanks
    Raj
    ---------

    I believe this is possible using the security APIs. See http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/PLSQL/DOC/PLDOC_9026/INDEX.HTML and look for person_info (Returns user information, given a user name)
    under wwsec_api
    Suggest posting any follow-up questions to the Security forum - http://forums.oracle.com/forums/forum.jsp?forum=6

  • Can my secondary email address be used to receive invitations to share a calendar?

    I currently have an @me.com email address for my ID. I never use this address, but have another address that is widely known.
    Some colleagues want to share calendars via private sharing. They sent the invitation to my usual address, so I cannot connect to my iCloud which has the me.com ID.
    If I add my better known email address to my iCloud account, will I then be able to receive the invitations?
    I do not want to have my me.com account available for active use.

    When you "added" your Apple ID, was that in the iCloud/Find My iPhone settings? If you acquired the iPhone from someone else and they had previously set up iCloud with their own Apple ID, they need to remove the iPhone from their iCloud account. Until they do, you will not be able to activate the iPhone.
    If that's not what you meant, please clarify exactly what is occurring.
    Regards.

  • Calendar showing numbers instead of name of day in week view

    Mavericks Calendar is showing numbers from 1 to 7 in stead of the name of the day (mon, tue ... etc) in week view. Any solutions?

    dike,
    If you refer to the Function Help in the Inspector, you will see that in Numbers WEEKDAY returns a number representing the day of the week. To convert that to the name of the day, you must wrap WEEKDAY in a DAYNAME function, as follows:
    Regards,
    Jerry

  • Can't subscribe to invite to share iCloud calendar.

    Received email invitation to join iCloud calender via my aol account.  Hit subscribe tab but nothing happened.  I have a HTC phone and also have a gmail acct and use Windows 7. Any suggestions as to what can be done?

    Sharing an icloud calendar privately, between two users for example, requires both users to have iCloud accounts.

  • When switching my CallerID to my AppleID, my iphone shows numbers instead of contact names.

    I recently bought a shiny new iPad 3, and decided I want my imessages in sync between my iphone (4) and my iPad. To that end, I switched my callerID in my iphone settings (settings > messages > Receive at > Caller ID) to my apple-id, and made sure it's the same between my ipad and iphone. The syncing works beautifully and I'm very happy about it.
    However, my iPhone started showing the phone number instead of the contact name for imessages. I verified, on my ipad it shows the name still. My address book is synced via iCloud, and my contact's aren't duplicated. (Each phone number is unique)
    When I set the callerID back to my own phone number, it correctly shows the name, but my imessages aren't in sync anymore. Really annoying. Is there anything I can do to force iOS to always show the contact name instead of the phone number in messages?
    EDIT: some "regular" sms contacts aren't showing their names either after switching. Very strange.

    I had this problem since i restored my iPhone 4 onto my iPhone 4s. turned out to be a corrupted address book database on the phone.
    deleting the database @ /Users/Library/AddressBook (all files starting with AddressBook) (while Addressbook NOT running and when iCloud sync and iTunes sync both off) and re-run address book to create empty database before re enable sync solved it!

  • Outlook 2013 shared calendars show "no connection" and users can't see other's free / busy time in scheduling assistant

    Info:
    Outlook 2013 Pro Plus - Windows 7 64bit - Exchange 2007 Hosted by Rack Space - everything fully patched....
    every user in our company on Office 2013 now has the same issue: shared calendars won't populate with the following error: "no connection" when they try to see another user's calendar in scheduling assistant, it just shows those diagonal lines
    (like they don't have permission)
    Based on "research", reaching out to Rack Space and some desperate Googling, I've tried the following to no avail:
    run full repair of Microsoft office 2013 and also reinstalled Office 2013
    turn off /on cached exchange mode, turned off /on Work Offline mode
    rebuild OST and email profile
    start Outlook in safe mode with no add-ins running
    check auto discover records and add auto discover server address to local intranet zone in Internet Explorer
    modify calendar permissions for both ends of the calendar interaction
    check Outlook OWA access, confirmed everything is fine there
    anyone have any ideas for me? people in Outlook 2010 have no issues BTW; just Outlook 2013....
    thank you so much in advance and please let me know if I can provide more info!

    Hi,
    This issue may be caused by KB 2837643 & KB 2837618, please uninstall the patches, let the users create a new profile to test the result:
    http://support.microsoft.com/kb/829918/en-us
    If the issue is caused by the patches, please note we have realized this issue and hopefully there will be a fix to this issue soon. We will inform you as soon as there's a fix.
    Regards.
    Melon Chen
    TechNet Community Support

  • It shows "home" instead of domian name

    After uploading site,my domain name is not shown in broswer tab, instead it shows "home" how do i chnage it that it shows my domain name?

    When I type my domain name. It does come up but at the tab, instead of showing my domain name it shows "home".
    I try to made change as fellow bloger pnopie, suggested to chnage the page name to my domaina name in page properties. I did that and uloaded the page again. It accepts it, but only for that one opening. In next opening of my website, once again it shows "home"..
    Any suggestion?

  • Run Time Prompt - showing alias instead of member name

    We have a Capex Planning application that uses right-click menus to launch business rules with Run Time Prompts. We are using Planning 11.1.2.1. Even we the alias table set, when opening the RTP it pulls in the member name rather than alias.
    There is an Oracle KB article (Show the Alias name in the Business Rule Run-Time Prompt [ID 857832.1]) that has this solution:
    Take the following steps to add the alias name to the run-time prompt along with the member name.
    1. Log in to planning web.
    2. Navigated to File >> Preferences >> Application settings.
    3. Select Show Alias in Member Selection and change the option from no to yes.
    4. Save it.
    But in 11.1.2.1, there is not option for "Show Alias in Member Selection" under Planning Preferences.
    We have an SR open, but figured maybe someone else has run into this issue as well.
    Does anyone know how to get the aliases to show on a Run Time Prompt rule in 11.1.2.1?
    Thanks for your help!!

    Deleting and rebuilding the dimension in the outline will enable you to build the members in the order you may desire if the file is in a given order.

  • Recieved SMSs showing numbers instead of contact names

    Hi
    My iPhone 4 shows only numbers starting with +20 (Egypt's International code) with recieved SMSs and the only way to show contact names is to add +20 to all of my contacts (with an app) but that would make recieved "calls" show numbers and not names !!!
    Any way to fix that ?

    Check to see if you have contacts in your Contacts app. This is something that can happen sometimes, and is usually cured by resetting the phone. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot. No data will be lost.

Maybe you are looking for