Limited period for calendar event synchronised in BB Link

Hi All,
In Blackberry Link, I wonder how to set the period I can synchronise my calendar event between my iCal and my Blackberry Q5. Indeed, currently I do not have all my past events.
Thanks for help,
Jérémie

Hi Geek,
According to your description, my understanding is that you want to use a workflow to achieve your goal.
I recommend to use Start Approval Process action to meet your need.
Here are the detailed steps:
Set the “Require content approval for submitted items” to Yes in the calendar list and select “Only users who can approve items (and the author of the item)” under “Who should see draft items in this list”.
Create a workflow associated with the calendar list and set the workflow to start when an item is created.
Select Start Approval Process from Action, then click these users to set the approver(reviewer). Add a Set Workflow Variable action before the Start Approval Process step and change the settings to be: Set Variable: EnableContentApproval to Yes.
Click Approval in the step Start Approval Process, click Change the behavior of a single task under Customization.
Scroll down to the step When a Task Completes, add Send an Email action below the step If Current Task:Outcome equals Approved and step Else if Current Task:Outcome equals Rejected.
Please refer to the picture below:
After that, the approver(reviewer) will get the email and he/she can click Open Task button in the email to review and complete the task. When the approver approve/reject the task, the user will get an email and the rejected events cannot be viewed by the
users who have no permission to see the draft items.
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • Have problem setting Email alerts for Calendar events. Warning message says I need to set up a card in Contacts with my email. I do but it doesn't recognize it. How do I indicate the email I want alerts sent to?

    The system of setting up email alerts for Calendar events worked fine in Snow Leopard but since I upgraded to Mt. Lion Calendar won't let me set email alerts. When I try, I get an error message saying I need to set up a card in Contacts for my email. I have a card set up in Contacts for both of my email addresses but it doesn't recognize them. Perhaps the name I have on the card doesn't match a name that Calendar is looking for. Calendar doesn't seem to have a way in Preferences or elsewhere to indicate the email I want alerts sent to. Any ideas how I can get this system working again? Thanks for your help.

    You might want to consider starting a new discussion. Since this one is marked solved, less people are likely to look at it. You can link to this one.
    See if another contact is marked as this is my card.

  • How can I stop notifications for calendar events in a shared calendar?

    I have a shared iCal calendar in iCloud. I share it with my wife, so she can see my work schedule. It is a bit annoying though that her iPhone keeps doing all my reminders and notifications for calendar events. I want her to able to see and edit my calendar but she'd like very much not to have her phone buzzing all the time.

    Andrei1,
         So are you saying that if I, rather than assigning a uint to the column and row number for each tile, just assigned a string to each one in the form "#_#" then I could actually just assign the "adjacent" array directly to it instead of using a generic object to hold those values? In this case, my click event would simply check the indexes, one at a time, of all tiles currently stored in my "selectArr" array against the column/row string in the currently selected tile. Am I correct so far? If I am then let's say that "selectArr" is currently holding five tile coordinates (the user has clicked on five adjacent tiles thus far) and a sixth one is being evaluated now:
    Current "selectArr" values:
           1_0
           1_1, 2_1, 3_1
                  2_2
    New tile clicked:
           1_0
           1_1, 2_1, 3_1
                  2_2
                  2_3
    Coordinate search:
           1_-1
    0_0, 1_0, 2_0, 3_0
    0_1, 1_1, 2_1, 3_1, 4_1
           1_2, 2_2, 3_2
                  2_3
         Essentially what is happening here is that the new tile is checking all four coordinates/indexes belonging to each of the five tiles stored in the "selectArr" array as it tries to find a match for one of its own (which it does for the tile at coordinate 2_2). Thus the new tile at coordinate 2_3 would be marked as valid and added to the "selectArr" array as we wait for the next tile to be clicked and validated. Is this correct?

  • Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!!  SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.

    The issue:  Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!! 
    SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.
    The cause:  It is now clear what caused this problem.  For years I had several “all-day” events in my Outlook calendar (birthdays, anniversaries, etc.).  In May 2012 I decided to make some of them one hour  events so I could add alerts to remind me of the event.  I did this by dragging them in Outlook to the time I wanted and expanding them to the time slot desired and then adding the alarm.
    The symptom:  Syncing stopped working for the calendar but continued working for contacts and notes.  I didn’t realize sync was failing until months later when I missed two very important phone calls, so when I noticed it the cause was not obvious. 
    The failed attempts:  I’m head of a software firm and my calendar sync is a crucial to my business life so I took this on with a vengeance.  From a quick look at events in Outlook and the iPhone I could see that the problem started in May 2012.  Events before May were in both Outlook and the iPhone but events after May were only one or the other.  Unfortunately I had changed several other things at the same time relating to other events so again the cause was not obvious.  MANY calls with AppleCare proved them incompetent so my internal IT guys assisted trying many things.  We tried a huge number of calendar changes and several versions of iTunes, iPhone OS and Office as well as both iPhone 4 and 5, all without success.
    The fix:  After 18 months of frustration, MANY  hundreds of $ expense and MANY hours of wasted time I saw a blog that had a calendar sync  problem and it indicated all day events were related.  I changed the display of the Outlook calendar to the list view, added columns so I could see “all day” event check marks as well as times of events,  sorted on the “all day” event column to move them to the top, and for all events that were “all day” events AND had a start and end time, I removed recurrence and then added the annual recurrence back…
    After I fixed all events that had BOTH “all day” set and had a start/end time, I tried another sync.  It synced for the first time in 18 months! 
    Problem occurred May 2012 – fixed Nov 2013

    Hi, to remove dummy '_ModGrp' entries, rather than crashing the 'Suppr' key on your keyboard, you can use this basic VBA macro (launched for instance from Excel).
    It will recursively remove all '_ModGrp...' folders
    Sub RemoveFolders_Click()
        Dim oOutlook As Outlook.Application
        Set oOutlook = New Outlook.Application
        Set objNameSpace = oOutlook.GetNamespace("MAPI")
        Call CleanFolders(objNameSpace.Folders)
    End Sub
    Sub CleanFolders(objFolders As Outlook.Folders)
        For i = objFolders.Count To 1 Step -1
            If Left(objFolders(i).Name, 7) = "_ModGrp" Then
                objFolders.Remove( i )
            Else
                If Not objFolders(i).Folders Is Nothing Then
                    Call CleanFolders(objFolders(i).Folders)
                End If
            End If
        Next i
    End Sub

  • "Error determining planning periods for calendar "  when running a program

    Hi,
    When i am running a program with date range say "01/05/2011" to "30/06/2011",the program is executing successfully without any error. When i am executing the same program with date range as a) "01/05/2009" to "30/06/2011" and b)"01/05/2008" to "30/06/2011" the program is failing with error as "Error determining planning periods for calendar". Can anyone suggest me what i should do to avoid the failure of the program with above date ranges also.
    Thanks in advance,

    Dear,
    Error message 61123:"Error determining planning periods for calendar &".The PPC planning calendar specified in the material master MRP 2 view for the material is  incorrectly.
    The planning calendar periods are insufficiently maintained for the planning calendar used.
    Check the period of planning calendar in MD26 and generate the correct period.You can avoid the problem in several ways:
    Maintain the planning calendar far enough in the future (at least until beyond  the end of the planning horizon).
    Also check any demand is lies beyond the validity period of planning calendar.
    Reduction of the planning horizon of MRP also can control such issue, as MRP planning horizon lies in an area in which the planning calendar is no longer maintained
    Regards,
    R.Brahmankar

  • Duplicate alarms for calendar events on N9

    I noticed I get multiple alarms for calendar events on my N9. For some events, I get four times the same notification. I also sometimes get notifications for deleted events.
    I sync my calendar over bluetooth. Since I had some troubles setting up the sync, I deleted the calendar a few times and synced again. So I have the impression that the alarms of the events of the deleted calendars are still stored in some database. I guess this causes the same alarm to be triggered multiple times and alarms for deleted events to be displayed.
    Is there a way to re-generate the internal alarms database? 
    (I did already upgrade to PR1.1, this didn’t fix it.) 

    I used BT sync with Windows 7 (64 bit), because I was not able to do USB sync (as N9 is not supported by any Nokia PC sync soft). After that I had a real mess: Each event was multiplied to occur multiple times during a day, thoughout each week, throughour each year, e.g. for example meeting scheduled for 10am on October 20, 2011, occurred a number of times on the same day,  and each previous week until 2005 (when my calendar starts).  An event that was scheduled back in 2005 occurred each week throughout 2011.  The same thing happened to my Outlook. So you can imagine a mess that I got with my calendar after syncing with N9. Thanks that I had intact calendar on my Ipad and was able to restore my Outlook.  I had to to manually correct calendar on N9 (because any further attempts to sync with Outlook) resulted in the same mess.  When I say manually I mean that I deleted all entries (takes time) and re-entered only ones that I really needed (such as birthdays, other anniversaries and meetings from October 2011 forward).  After that I did not risk syncing N9 with Outlook anymore in expectation of a decent  sync software from Nokia (which I doubt will come, since even their latest soft Nokia Suite is not supporting N9 (although there some users were able to successfully sync with PC Suite, and some installed previous version of Ovi Suite, upgraded it to Nokia Suite and it works now for them -- but not for my very special N9).  Having fianlly lost confidence in Noikia I decided to become a happy user of iPhone (with all or at least most soft needed being put in place by Apple or 3rd parties).

  • Error determining planning periods for calendar

    Hello SAP Guru's
    We are receiving the above error when trying to go into MD04 for a particular material.  we have checked the forecast agains the planning calendar and the dates in the forecast and demand planning are approximately 2 years less than the end date in the planning calendar.
    Checking SAP it has said to extend the planing calendar past the planning horizon. It is already extended past the planning horizon.
    The only issue with this product is that the material will soon be superseded by another material, this has a different calendar assigned to it.  Could this be the problem?
    Any info gratefully received.
    Thanks
    Sue

    Hello Vicky,
    The error occurs when first going into MD04.  The exact error message is as follows:
    Error determining planning periods for calendar M14
    Message no. 61123
    Diagnosis
    The system could not determine sufficient planning periods by the planning calendar to group requirements by planning calendar periods for all the requirements planned in the future.
    System Response
    When a material is planned by using the periodical lot size by planning calendar, sufficient periods must be calculated to group requirements by the planning calendar for all requirements.
    Procedure
    Rework the planning calendar with which the material was planned, which means calculate new planning calendar periods.
    To do this, go to Customizing for MRP, under the activity Change PPC periods.

  • Color coded categorization for calendar events

    I rely heavily on my calendar to track schedules for everyone in my family and I am really unhappy that the ability to color code categories for calendar events is missing - it has been available on every other Palm product I've owned. Does anyone know how to request a specific function? Or has anyone heard that this issues might be addressed?
    I am seriously considering going back to my Centro for the calendar. The fancy stuff is great, but the bottom line for me is a functional calendar.
    Thanks

    That has been suggested to me but it means I would have to track a separate calendar for each family member and pet, meaning more work, not less, and I have found that I get many duplicates when I use more than one google calendar. It's just not convenient and it doesn't give me the option to categorize (medical appts, vet appts, work travel, different school due dates for different people, etc.) by person AND appt. type.
    Again, not as simple, quick,  visual or flexible as when the function was in the app.
    Thank you for the suggestion, though.
    Carol

  • Stamina Mode: LED Notification for Calendar Events

    Is there any application I should add to the Stamina Mode exceptions list in order to get LED notfications for calendar events? I have already added the respective calendar application to the list so sound notifications are provided but the LED will still not flash.
    I have stumbled upon a relevant thread (http://talk.sonymobile.com/t5/Xperia-SP/Xperia-SP-Notification-LED-and-STAMINA-Mode/m-p/326146/highl... but it is from the middle of 2013 and the information provided therein might thus be outdated.
    Hints/suggestions would be greatly appreciated.
    nvx
    EDIT (2015-03-11):
    I just noticed that -- even if Stamina Mode is turned off -- the notification LED lights up only after waking the phone up. Is this by design?  I mean, the whole purpose of a notification LED is to, well, notify the user about events that they have missed while the phone was locked / in sleep mode...

    Stamina mode has been designed to turn the LED notifications off, as an effort to save as much power as possible. However, in products from Xperia Z Ultra, Xperia Z1 and Xperia Z1 Compact and later, the LED illuminates when there is an incoming call or message when STAMINA mode is on.
    I tested here and it works like you say, the LED doesn't flash for calendar reminders even when Stamina is off. I will forward that as feedback but it may perhaps work if you download another calendar application as long as Stamina is off.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Alarm for Calendar Events

    For calendar events, is there any way to hear the alarm beep through the headphones?
    I find it incredibly frustrating that I am unable to hear any event alarms when I'm listening to my music.
    I have a 1st Gen iPod Nano.
    I hope I'm just missing some very obvious setting...!
    Thanks in advance.
    Powerbook G4 17 1.33GHz   Mac OS X (10.3.9)  

    Unfortunately, the only options available are "beep", "silent", and "off".
    "beep" uses the internal speaker, "silent" just displays a message on the screen, and "off" does neither.
    I was hoping that someone would know of a "hack" that might give me what I'm looking for. After all, the menu click noise can be made to go through the headphones, so it's not as if the software cannot handle overlaying two pieces of audio.
    Maybe it'll be part of a future software update.....
    Powerbook G4 17 1.33GHz   Mac OS X (10.3.9)  

  • "Fix" for Calendar Events displaying one day early

    I posted a question about this a couple of weeks ago, but can't find my original post. No way to search by user name, so I gave up looking for it after 10 or so pages. Because there are several others who have posted about the same problem, I decided to start a new discussion describing the fix that worked for me, with help from Apple Tech Support.
    Background of my problem: New iPhone 4S, set up as "new phone" -- calendar events synced via MobileMe without any problems. Or so I thought. Discovered a few days later that any "All Day" event was shown on the day prior to the actual event -- US Holidays and Birthdays in particular.  Events with specific start/end times were displaying on the correct day.
    Checked these forums and was unable to find a solution, so I made an appointment for the following week with Tech Support to have someone call me. Fred first had me try resetting the phone. Didn't fix it.
    Note: Somewhere in our troubleshooting, he had me turn off the Birthday and US Holiday calendars on both the phone and iCal on my computer, then turn them back on and do a sync. This did not correct the event dates. If I remember correctly (I wasn't taking notes), this was before changing any settings in iTunes and didn't fix the problem. However... it *might* have played a part in the final fix, so if the following steps don't fix it for you, try adding in the off/on for the calendars before changing the iTunes sync settings.
    What finally worked :
    Changing a setting in iTunes to overwrite the Calendar on my iPhone and doing a Sync (bypassing MobileMe entirely). Here's how to do it.
    In iTunes, go to the "Info" tab and scroll down to the Advanced section. There are 5 checkboxes there and selecting one or more will overwrite the corresponding items on the iPhone during the next sync only. He had me check Calendar, then perform a Sync.
    That worked!  For US Holidays, but most of the birthdays were still one day off, except ones I'd entered manually in iCal. All of the misplaced birthdays are published by dates I've entered for contacts in Address Book on my Mac.
    I went back to iTunes and checked Birthdays in the Advanced area and performed another sync. That overwrote the Birthday calendar on the phone and now all of my Birthdays and US Holidays are showing on the correct days.
    Would have been quicker if I had checked Birthdays at the same time as US Holidays, so when you follow the steps, check both Birthdays and Holidays to save yourself some time.
    Hope this helps all of you who are having the same problem I was.

    All of my dates are out by one day in ical (and address book). I can change them manually (best advice I could get from Apple), but it keeps happening to me. Any help appreciated, I have 10.8.6; macbook pro, iphone 4s and am frustrated. This seems to be a common problem but I can't find a fix. 
    In the post above advice is to go to itunes, "info tab", Advanced...but I don't see an "info tab" -
    Thanks for any help!
    Joan

  • Notifications for calendar events disappearing

    Upgraded from the Yosemite beta and everything seems good, except for one detail. I use the rewinders for my calendar events as a to-do list as they remain on my desktop. But now, my event reminders pop up correctly, but they disappear during the day, including all-day events. I want them to stay on the desktop until I dismiss them, like with Mavericks.

    Within the Calendar app, tap Calendars at the bottom center of the screen. Tap on Show All Calendars. Also, ensure all your calendars are switched ON (green side showing) in your email account settings.

  • Status indicator for calendar events

    Calendar events can be set to busy, tentative or out of office. However, there seems to be now way to have a visual clue to what the status of an event actually is. (I am using an Exchange backed email account).
    Even in day-view mode there is no textual info that suggest the status. One had to open the event to check.
    Color is already used for different calendars, but possibly some other (graphical) clue could help manage such entries more easily and make one more productive.

    There doesn't seem to be a question. Boilerplate follows.
    FEEDBACK
    If you wish to raise issues with or suggest changes to Apple, then you need to talk to them directly. These forums, strictly user-user and for technical support issues, are not an avenue for that. Use the feedback forms set up for the various hardware and software packages:
    Feedback area of Apple Support: http://www.apple.com/feedback
    iPad Feedback Form: http://www.apple.com/feedback/ipad.html

  • Is it possible to export all of the fields for calendar events ? Specifically we're after the event creation date time.

    We need to find out when a calendar event was created.
    I have been unable to find this information in Lightning or any exports.
    From looking into the local.sqlite database file the cal_events table has a field called
    time_created. Unfortunately when I try to export this, the format is unknown so it just
    exports as a number.
    Does anyone know of another way to export this information ?
    Thanks in advance

    what exactly are you trying to achieve is my obvious question. A single forensic inquiry is different to a full listing of all events over years.
    I assume you mean the created date shown in this view of the database.
    https://support.cdn.mozilla.net/media/uploads/images/2014-06-02-18-47-50-c207d9.png
    The values stored there are javascript date time values.
    If you enter the value into a javascript like
    var d = new Date(1374129123000000);alert(d);
    Where 1374129123000000 is your number not mine then the alert will be the datetime UTC
    You can enter that javascript onto the error console and have it evaluate. Tools menu (Alt+T) > error console.

  • When a third party program creates a new Google calendar event using a http link I cannot click the save button in Firefox 9.01 or 10b2.

    I use a TV listings program called DigiGuide. This has a script that opens a new Google Calendar event page in my browser for a specified TV program with all fields already completed. I then just have to click the SAVE button on the Google Calendar site to save the event - but since updating to 9.01 from 8.xx this button and others (Discard, Search) has no effect, although the cursor changes when over the button as if it recognised a link. Opening the same page in Chrome works fine. I have also noticed that Calendar's other buttons (e.g. next/previous period) can stop working on the main Calendar page, which I have as a pinned tab - in this event navigating away from Calendar and back again regains that functionality. The issue persists in Firefox 10b2.

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

Maybe you are looking for