Users added under delegation to view calendar show No Access (Exchange)

I am trying to add other user's calendars under Delegation so I can view them in iCal.  These are calendars that are shared with me - I have confirmed this when using the Outlook client.  When I add them under iCal they show No Access.  Also, strangely, iCal appends 00000 to the end of each user name under the users field in Delegation.  For example - I add Tom Jones - pick [email protected] and I see tjones00000 in the Users field and No Access in the other fields.  My Exchange version shows as 14.2.247.5 in the web client.

That sounds like delegation issues to me. The new employee needs to go into delegation for their calendar and add all the other employees as "delegates" (iCal Preferences, Accounts, Delegation tab, Edit button). The current employees need to go into delegation for their calendars and add the new employee as a "delegate" as well. Hit the refresh button after that and everyone should be able to see each other's calendars. We have that issue all the time and, thank goodness, I have Apple Remote Desktop. I go into everyone's calendars myself and add the new employee. Otherwise newbies would never see anyone's calendars.

Similar Messages

  • In simple user Interface modify the sequence view to show only executing step

    I want to see only the Single executing step  in sequence view of the user interface
    are there any egs for the same!!

    This is relatively trivial to implement yourself. Handle the UIMessageEvent of the ApplicationMgr and when you get a trace UIMessage do something like the following:
    if (uiMsg.Event == UIMsg_Trace)
        int notUsed;
        String currentStepName = "";
        SequenceContext context = uiMsg.Thread.GetSequenceContext(0, out notUsed);
        if (context.NextStepIndex >= 0)
            currentStepName = context.NextStep.Name;
        /// Do something with currentStepName like update an indicator control.
    Hope this helps,
    -Doug

  • A user cant see anything in SharePoint calendar with full access

    Hi,
    I have a wierd issue, where only one user cannot see anything in SharePoint 2010 Calendar, when everyone else can.
    The calendar has more than 100 events, and he cannot see anything in Calendar view. The calendar.aspx page comes up with no items in it.
    The calendar is very basic with default settings, I also gave the user full access but still nothing changed.
    FYI- in list settings, the users can "read all items", not just their own. It happens in all the other calendars also which he opened in front of me.
    Also, I logged in with my credentrials on his machine, and I could see all the items.
    We were migrating the exchange public calendars manually to SharePoint(about 10 of them), the calendars worked great for so many years without SharePoint, and now after migration the users have to  face issues.
    Thanks

    Can you try to use fiddler
    to trace why the details are not showing for that particular user? You may get few details to troubleshoot the issue. Does that user see the problem in other machines/browsers as well?
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Is it possible to change the Calendar 7.0 view to show 2 weeks instead of 1 week or month view. I find the month view is far too messy and the 1 week too short. To date I found the previous version more visibly user friendly

    I have upgraded to Mavericks and have found the Calendar 7.0 not visually user friendly. The week view is too resrictive and the month view far too messy. Is there any way of editting the view, the ability to change the colour and thickness of the grid lines would at least help. This version of Calendar seems to be a retrograde step.

    Agree.  Positively loathe the new calendar display - each day blends into the next and I can't get my information at a glance.  Looks like it's time to switch to BusyCal or Google Calendar.

  • The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    Unfortunately, that's the way the cookie crumbles nowadays. Sir Jony Ive's GUI design for iOS7 has been met with much skepticism (to say the least). But until the company sees the compelling need for an adjustment or reversal, it "ain't happenin' ". So amble over to the feedback page ( http://www.apple.com/feedback/ ) and make your displeasure known to the company, OR make it known by not purchasing its products. Because as long as the iGadgets continue selling as fast as they can make them, they will see no need for change.
    BTW, do note you are NOT talking to Apple here. This is just a user-to-user forum.
    Edit: for now, you can also try out any of the alternate calendaring apps available in the App Store.

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

  • User View not showing the assigned resources attributes in idm 7.0

    Hi,
    In a Remediation Form I am using a text field
    <Field name='user.accounts[SimAD].group'>
    <Display class='Text'>
    <Property name='title' value='Title'/>
    </Display>
    </Field>
    but here i am not able to get the value of group. when i dumps the user view its shows only Lighthouse resource under accounts attribute.
    <Attribute name='accounts'>
    <List>
    <Object name='Lighthouse'>
    <Attribute name='firstname' value='Magnet'/>
    <Attribute name='fullname' value='Magnet Mangentta'/>
    <Attribute name='idmManager'/>
    <Attribute name='lastname' value='Mangentta'/>
    </Object>
    </List>
    </Attribute>
    while the user has three resources.
    when I use the getView method in form using following code
    <invoke name='getView'>
    <ref>:display.session</ref>
    <concat><s>User:</s><ref>user.waveset.accountId</ref></concat>
    <map>
    <s>authorized</s>
    <s>true</s>
    <s>subject</s>
    <s>configurator</s>
    </map>
    </invoke>
    this time I m able to get the value resource attribute.
    please give the solution how can I get the editable user view in Remediation Form so that I can change the attribute of resource.
    Thanks,
    Amit

    i got the solution there was one attribute on workflow
    <Argument name='NoFetch' value='true'/>
    remove this to false it will fetch all the resource attributes

  • HT200196 iCal reminders are clogging up my computers, iPads and iPhone.  When I view the Calendar list in iCal, it seems it has added a new calendar every time an event is added.  I have a calendar list that has grown to over 100.  How do I remedy this?

    My laptop, iPad, and iPhone are being clogged by repeated iCal alerts.  Every time an event is added, it seems another Calendar is also added.  When I view the Calendar list in iCal, there are over 100...and the number is growing.  They can not be deleted with a simple "Select all" or "Delete All" and, when deleted individually, the list quickly grows to huge numbers again rapidly.  How do I keep this from happening and eliminate the excessive number of calendars?

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • Can SharePoint calendar show more than 3 items on a Day's schedule in Month view? How?

    Hi there,
    Can SharePoint calendar show more than 3 items on a Day's schedule in Month view? How?
    Thank you so much.

    Hi,
    From your description, my understanding is that you want to expand all items if a Day’s schedule has more than 3 items.
    You could accomplish your requirement with jQuery to auto expand all items when you load month view, please refer to this article:
    Auto Expand Month View on SharePoint 2013 Calendar
    http://blog.eastridge.net/auto-expand-month-view-on-sharepoint-2013-calendar
    If I misunderstand your requirement, please provide more detailed information.
    Best Regards,
    Vincent Han
    TechNet Community Support
    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]

  • How to use a Text View to show the current user

    Hi Experts,
    I am using a Text View to show the current logged on user.
    Also i need to retrieve the date of creation of proposal and show it as output parameter.
    I am using the following code but it is not working properly.
    Please help me out regarding the same.
    Method technicalDescription()
    //Attribute User to store user name
    IGPAttributeInfo user = output.addAttribute("USER", IGPAttributeInfo.BASE_STRING);
                user.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    //Attribute date to store current system date           
    IGPAttributeInfo date = output.addAttribute("DATE", IGPAttributeInfo.BASE_DATE);
                date.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    Method execute()
    //getting current system date
    Date currDate = new Date(System.currentTimeMillis());
              contextElement.setDate(currDate);
    //Retrieve Current User Details
    try {
    IWDClientUser user = WDClientUser.getCurrentUser();
    String firstName = user.getFirstName();
    String lastName = user.getLastName();          
    String userName = lastName + " " + firstName;
    contextElement.setUserName(userName);
    } catch (WDUMException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    Method complete()
    output.setAttributeValue("USER", wdContext.currentContextElement().getUserName());
    output.setAttributeValue("Date", wdContext.currentContextElement().getDate());
    Thanks a lot.
    Cheers
    Gaurav Raghav

    There are a few ways, for example declare an IBOutlet for the text field and then use it with NSControl's stringValue: method (inherited by the NSTextField), or bind the value of the text field to a property, etc.  What have you got so far?

  • How to use a Text View to show the current user in WDJ

    Hi Experts,
    I am using a Text View to show the current logged on user.
    Also i need to retrieve the date of creation of proposal and show it as output parameter.
    I am using the following code but it is not working properly.
    Please help me out regarding the same.
    Method technicalDescription()
    //Attribute User to store user name
    IGPAttributeInfo user = output.addAttribute("USER", IGPAttributeInfo.BASE_STRING);
    user.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    //Attribute date to store current system date
    IGPAttributeInfo date = output.addAttribute("DATE", IGPAttributeInfo.BASE_DATE);
    date.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    Method execute()
    //getting current system date
    Date currDate = new Date(System.currentTimeMillis());
    contextElement.setDate(currDate);
    //Retrieve Current User Details
    try {
    IWDClientUser user = WDClientUser.getCurrentUser();
    String firstName = user.getFirstName();
    String lastName = user.getLastName();
    String userName = lastName + " " + firstName;
    contextElement.setUserName(userName);
    } catch (WDUMException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    Method complete()
    output.setAttributeValue("USER", wdContext.currentContextElement().getUserName());
    output.setAttributeValue("Date", wdContext.currentContextElement().getDate());
    Thanks a lot.
    Cheers
    Gaurav Raghav

    You can use a text string as the reference.
    If you use the VISA Find Resource function, it will return an array of strings which you can index in your code, and store either the index, or store the string itself. You can even use strings like COM1 and COM2, assuming those ports are available.
    The challenge is when you move from one machine to another, where the serial ports may be different on the other machine.
    Message Edited by LabViewGuruWannabe on 01-07-2008 06:33 AM
    Message Edited by LabViewGuruWannabe on 01-07-2008 06:37 AM
    Attachments:
    VISA find.png ‏5 KB

  • Users added to Profile Manager not showing up in everyone group

    So profile manager was working quite well until I made a change to the workgroup group.
    I removed the password policy from the workgroup group and added a new group for the password policy so we could essentially still manage non user assigned iOS devices.
    Now when I add a new user to the workgroup group on the server I have them login to the mydevices site so we can enroll the device and they can login but are immediately presented with:
    "You do not have permission to access the page you were looking for. Contact your system administrator."
    In troubleshooting the issue I noticed that new users being added are not showing up the in the everyone group which is preventing the users from having proper access. Prior to all this I could add a user and they would show up in everyone as intended.
    Any thoughts?

    I'm not sure if this is the same issue, but I have a user in Server.app that is not showing up in Users group. She is listed in her sub-group, but I cannot add devices to her account. When I click on the arrow next to her name in the sub-group, it takes me to the Users list to the top user.
    Any thoughts?

  • HT1399 I have an ipod shuffle 4, my playlist is in alphabetical order on my itunes, when I go to add it to my ipod it puts it into order of "date added", under "View" i can change it, but when I sync it, it immediately reverts back?!!

    I have an ipod shuffle 4, my playlist is in alphabetical order on my itunes, when I go to add it to my ipod it puts it into order of "date added", under "View" i can change it, but when I sync it, it immediately reverts back?!!

    Yeah - not really. Sorry - but you will need to get it fixed so you can back it up. You are going to want to Restore your new iPhone from that backup when you get it, so it will really be worth it.
    As soon as you get your new iPhone, set up automatic iCloud backups, or if you don't have Wifi, then it is really important to get into the habit of backing your device up weekly to iTunes.
    Best of luck!
    GB

  • Proxy for Multi User calendar shows user's folder tree

    By giving the View proxy right to other users, so that they can utilize the Multi User calendar, this apparently also gives the user you've assigned that right to the ability to see the folder tree of all users that have given the View right to the user. In other words, by clicking on the Proxy icon at the top of your folder tree, and picking the user who gave you read rights to their appointments, you can see all their folders. Granted, you will only be able to see appointments within those folders. But, some users may assign descriptive folder names they might otherwise not want to be visible to others. Is there some way to hide the folder view, while still proxying the view right to appointments?
    Thanks

    Ok, Thanks - I'm satisfied as long as that's by design.
    Originally Posted by dzanre
    pagjsp wrote:
    > right to the ability to see the folder tree of all users
    > that have given the View right to the user
    There is no way to hide this.
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    Shopping Cart

  • I have recently upgraded to ios 7 on my iphone. I am currently at 7.0.2 which i installed yesterday. Now i notice that the keypad doesnt appear in any function under Phone. Keypad doesnt show up in contact search, or while adding new contacts or editing.

    I have recently upgraded to ios 7 on my iphone. I am currently at 7.0.2 which i installed yesterday. Now i notice that the keypad doesnt appear in any function under Phone. Keypad doesnt show up in contact search, or while adding new contacts or editing the existing. This is irritting.

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

Maybe you are looking for

  • How to delete duplicate records in 10 G.

    how to delete duplicate records in 10 G.

  • Material Master: Copy rule for purchase variant prices

    Hello together, in the material master (transaction MM42) on variant level the purchase prices can by copied from the generic article to the variant; for this a copy rule can be applied; one of the copy rules can be selected an be used. Now, the cust

  • Is it possible to set a "query in change mode" with the Report Designer 7.x

    Hi, I have a query set in "change mode"  with an index set as "data can be changed using user entries or planning funcionts". If I use this query as a "Data Provider" in the Report Designer, the result is still in "change mode" or a result of the Rep

  • Delta in cubes

    Hi friends,    Since last 10 days the delta in a cube is failing and the data is coming from ODS.I have reloaded the ODS after taking init,please tell me how to proceed with the cube.

  • Imessage and Itunes account question.

    I have an iphone 5s with my own separate Imessage account but my kids all share my itunes account. I notice that when I'm going to send a text it will attempt to autocomplete and shows me all my kids contacts on their phones. Why is this if my imessa