Appointment request not recordnized - webdav - Outlook

Hi together,
hopefully someone can help me and a sorry at start for my maybe bad english.
Here is the situation.
i´m syncing my Outlook-Calendar (from office) to my qnap-NAS (private) by webdav.
So there is a file on my NAS - named: e.g --> calander.ics
I also pointed the ical "add a calendarsubscribtion" to the address of my server --> e.g //192.168.1.1/documents/calander.ics
The calander was added in seconds. So good - but.
There a some appointments that are grey (the colour of the calandarsubscription is brown!) with a little broken white line arround it.
What i found out is.
only the appointments from other people that require my "ok, maybe oder no" are grey
appointments that i added are brown
and appointments that don´t need a reply - because there are no people invited - are also brown (my own appointments)
Why? I want to have all appointments in my calendar brown :-(
Thanks in advance.
P.S -- on my iPhone4S and on my "new iPad" all appointments are brown (as it should be)
Very confusing.
System: 10.8.2 (this problem exists earlier versions too)

Hi Lijo,
You have to implement note 1378037.
The Method attribute has to contain the value "REQUEST".
Kind regards
Frank Schepers

Similar Messages

  • Task Request not updating in Outlook 2010

    My manager has sent me a few Task Requests in Outlook 2010. He receives an email message saying I've accepted the task but he cannot see any notes I write in the task, even though he ticks the "keep an updated copy of the task on my task list". 
    He can just see a copy of the original task he sent to me.
    I am the only one this does not work for, everyone else can see updated tasks absolutely fine and weirdly, if I send him a task and he accepts it, I can see any updates he makes (note that this is without pressing the "send status report" button.)
    Any ideas?

    Hi,
    Actually, we have a dedicated support team regarding the Microsoft Outlook. I recommend you ask your question on our Microsoft Outlook forum which is staffed by more experts specializing in this kind of problems. The above thread Ed Crowley provided is exactly
    the Outlook forum.
    Thanks for your understanding.
    If there is any problem with Exchange Server, welcome to our Exchange forum.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Mail Sending issue to Outlook - Mail Request not Showing in SOST

    Hi,
    Im using mail sending logic for sending a mail to Creator of Billing. i have one itab which is having two Users with two different mail IDs. i need to send a mail to those user mail ids to Outlook
    user  Mail id
    12           XXX
    12           XXX
    13           YYY
    13           YYY
    at end of User i need to send a mail..
    loop at itab.
    at end of user.
    here sending a mail...for the first user it is sending mail perfectly..and mail request is available in SOST . once its comes to second user sending a mail getting sy-subc = 0 after SO_NEW_DOCUMENT_ATT_SEND_API1 FM..and mail request Not coming for second mail id in SOST both mails also available in Sap out box.
    endat.
    endloop.
    Kindly Help me out..
    Regards
    Dileep

    Hi,
    to send mails use this:
    FORM docu_send_email USING pv_otfdata TYPE tsfotf
    pv_emailid TYPE any
    pv_formname TYPE any.
    DATA: lv_filesize TYPE i,
    lv_buffer TYPE string,
    lv_attachment TYPE i,
    lv_testo TYPE i.
    DATA: li_pdfdata TYPE STANDARD TABLE OF tline,
    li_mess_att TYPE STANDARD TABLE OF solisti1,
    li_mtab_pdf TYPE STANDARD TABLE OF tline,
    li_objpack TYPE STANDARD TABLE OF sopcklsti1,
    li_objtxt TYPE STANDARD TABLE OF solisti1,
    li_objbin TYPE STANDARD TABLE OF solisti1,
    li_reclist TYPE STANDARD TABLE OF somlreci1,
    li_objhead TYPE soli_tab.
    DATA: lwa_pdfdata TYPE tline,
    lwa_objpack TYPE sopcklsti1,
    lwa_mess_att TYPE solisti1,
    lwa_objtxt TYPE solisti1,
    lwa_objbin TYPE solisti1,
    lwa_reclist TYPE somlreci1,
    lwa_doc_chng TYPE sodocchgi1.
    CONSTANTS: lc_u TYPE char1 VALUE 'U',
    lc_0 TYPE char1 VALUE '0',
    lc_1 TYPE char1 VALUE '1',
    lc_pdf TYPE char3 VALUE 'PDF',
    lc_raw TYPE char3 VALUE 'RAW',
    lc_ordform TYPE char15 VALUE 'ZORDCONFIRM_01',
    lc_attachment TYPE char10 VALUE 'ATTACHMENT'.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = lc_pdf
    max_linewidth = 132
    IMPORTING
    bin_filesize = lv_filesize
    TABLES
    otf = pv_otfdata
    lines = li_pdfdata
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT li_pdfdata INTO lwa_pdfdata.
    TRANSLATE lwa_pdfdata USING ' ~'.
    CONCATENATE lv_buffer lwa_pdfdata INTO lv_buffer.
    CLEAR lwa_pdfdata.
    ENDLOOP.
    TRANSLATE lv_buffer USING '~ '.
    DO.
    lwa_mess_att = lv_buffer.
    APPEND lwa_mess_att TO li_mess_att.
    CLEAR lwa_mess_att.
    SHIFT lv_buffer LEFT BY 255 PLACES.
    IF lv_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Object with PDF.
    REFRESH li_objbin.
    li_objbin] = li_mess_att[.
    DESCRIBE TABLE li_objbin LINES lv_attachment.
    Object with main text of the mail.
    lwa_objtxt = space.
    APPEND lwa_objtxt TO li_objtxt.
    CLEAR lwa_objtxt.
    DESCRIBE TABLE li_objtxt LINES lv_testo.
    Create the document which is to be sent
    lwa_doc_chng-obj_name = text-008.
    lwa_doc_chng-obj_descr = text-008.
    lwa_doc_chng-sensitivty = lc_0.
    lwa_doc_chng-obj_prio = lc_1.
    lwa_doc_chng-doc_size = lv_testo * 225.
    Pack to main body.
    CLEAR lwa_objpack-transf_bin.
    header
    lwa_objpack-head_start = 1.
    The document needs no header (head_num = 0)
    lwa_objpack-head_num = 0.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_testo.
    lwa_objpack-doc_type = lc_raw.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    Create the attachment.
    Fill the fields of the packing_list for the attachment:
    lwa_objpack-transf_bin = gc_x .
    header
    lwa_objpack-head_start = 1.
    lwa_objpack-head_num = 1.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_attachment.
    lwa_objpack-doc_type = lc_pdf.
    lwa_objpack-obj_name = lc_attachment.
    lwa_objpack-obj_descr = text-008.
    lwa_objpack-doc_size = lv_attachment * 255.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    lwa_reclist-receiver = pv_emailid.
    lwa_reclist-rec_type = lc_u.
    lwa_reclist-notif_del = gc_x.
    lwa_reclist-notif_ndel = gc_x.
    APPEND lwa_reclist TO li_reclist.
    IF li_reclist IS NOT INITIAL.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = lwa_doc_chng
    put_in_outbox = gc_x
    TABLES
    packing_list = li_objpack
    object_header = li_objhead
    contents_bin = li_objbin
    contents_txt = li_objtxt
    receivers = li_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDFORM. " DOCU_SEND_EMAIL

  • Shared calendar - partner's entries not showing in Outlook

    Hi there,
    I have set up a calendar for my wife and I to share.
    During the day I view this on my PC at work (Outlook 2007, Exchange 2010 SP2). For some reason any entires my wife enters in the shagred calendar do not display in Outlook, but they do on my iPhone. They are also visible in iCal on my iMac, and on the web version at icloud.com
    Can anybody shed any light on why this might be?
    I have the iCloud control panel installed on my PC and I have tried hitting the 'Refresh iCloud' button in Outlook.
    I keep getting into trouble with my wife...
    Thanks

    I'm not sure if that is the issue.
    If I create an entry in my shared iCloud diary in Outlook it appears in that calendar (colour coded correctly) on my iPhone. So Outlook 2007 is connecting with iCloud and pushing entries to iCloud, but it doesn't apppear to be working the other way around.
    Incidently I just created a new appointment on my iPhone in the shared calendar and that hasn't appeared in Outlook, so it doesn;t appear to be related to my wife's instance of the shared calendar.
    Any clues?
    Thanks

  • Infopath form people picker not working in outlook 2010

    Hi,
    I have created custom task form which has reassign feature. If the form is opened in IE, people editor control is working but in outlook account names are not resolved and dictionary also not working. There should be some work around as OOTB  approval
    task form could able to do it.
    So, Question is, why people picker is not working in Outlook? and how to make it work? If I store user profile in InfoPath form, people editor in outlook is working. but how to make a dynamic soap connection ?
    Thanks.

    Don't mark your own post as an answer when you obviously didn't understand the question...
    Dharnima mentioned it is working in IE but not working in Outlook, so it's obviously not because the
    "Requested By" field is in read only otherwise it wouldn't work in IE either.
    Like Navid.R mentionned, the problem is indeed when going through the "Reassign Task" button, but coming from Outlook.
    I have the same problem where the people picker validator and the people directory button doesn't work, only when coming from Outlook. I do click on Reassign Task, but I am unable to valide or open the people directory with both people picker buttons, simply
    nothing happens.
    I tried adding a native SharePoint Approval workflow to my list, and this one works fine. I can click the "Open Task" button in Outlook, click "Reassign Task" and then the people picker works perfectly fine.
    However my custom workflow (that has default forms) does not work when prompted from Outlook.
    I even tried to delete both forms and republish my workflow, so SharePoint can regenerate the forms by itself, it did generate new forms, but no luck either.

  • Recurring appointments not compatible with Outlook 2003!

    I have discovered that when I create a daily recurring appointment, designated as an All Day Event, the last day of the appointments shows on my BlackBerry Calendar, but NOT on my Outlook Calendar. I can't believe that I have been a prolific calendar user for a year (that I've been a BlackBerry user,) and have just now identified this incompatibilty issue. Is this glitch true for you too? Does it happen using Outlook 2007 as well? Blackberry phone support said this was an Outlook issue. I wonder what Outlook phone support would say!?! I am the Associate Pastor in a very active church, and am responsible for the calendar, keeping up with all events, reservations, etc. Any help will be most appreciated. When I print off a calendar for a church full of folks, or post it on the web, it needs to be right.
    Phil

    I have discovered that when I create a daily recurring appointment, designated as an All Day Event, the last day of the appointments shows on my BlackBerry Calendar, but NOT on my Outlook Calendar. I can't believe that I have been a prolific calendar user for a year (that I've been a BlackBerry user,) and have just now identified this incompatibilty issue. Is this glitch true for you too? Does it happen using Outlook 2007 as well? Blackberry phone support said this was an Outlook issue. I wonder what Outlook phone support would say!?! I am the Associate Pastor in a very active church, and am responsible for the calendar, keeping up with all events, reservations, etc. Any help will be most appreciated. When I print off a calendar for a church full of folks, or post it on the web, it needs to be right.
    Phil

  • Appointments inserted in calendar on Q10 not appearing in Outlook

    Hello
    Our company recently updated their handsets to the Q10.  On each, we have set up the person's Outlook account using Microsoft Activesync.  We use Exchange Server 2010.
    If a person puts an appointment in their calendar in Outlook 2010, it immediately appears on their Q10.  
    It is a wireless, not wired, sync.
    If they put an appointment in their calendar on their Q10, however, it is not syncing with their Outlook calendar.
    is there a fix for this, or is this facility not available on the Q10?
    We do not wish to use Blackberry Link/wired sync to resolve this problem.
    Apologies if this query has been resolved elsewhere on this forum.
    Sarah

    My father is having the same issue with his Z10!
    Rich C (PKcable)
    From Crackberry.com
    If I have been helpful please click like! Use the Thumbs up icon below this message.

  • Export 7 months' worth of notes/comments from Outlook 2013 Calendar Events?

    Upon start-up, before we got our CRM suite installed, one of our sales reps was keeping all his call notes and comments in Outlook's Calendar Appointment boxes. Now we want to get those seven months' worth of notes exported from Outlook
    as text so we can import them into our CRM. I can't figure out how to get those 200+ notes exported from Outlook...a little help?

    They are in the calendar notes field? What format do you need them in and did you try File, Open & Export to bring up the export wizard?
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • Change in Quota at Exchange Server does not reflect in Outlook

    I have changed the quota for a database on the exchange server from the default 2 GB to Unlimited and even restarted the information store service. The user is able to receive emails and send them as well. However in Outlook the message still persists that
    users quota is 2 GB. Have restarted Outlook several times. Can anyone shed some light why this may be happenning. Also what is the default interval in which the information displayed by Outlok changes after a change at the exchange server?
    Ron
    Ron

    Hi RonMen,
    The change of mailbox quota will not reflect in outlook immediately,  the update occur every 30 minutes by default.
    Updates can be triggered either manually by the user or automatically.
    The following user actions will request the server to update the properties :
    1. Emptying Deleted Items
    2. Emptying a Folder (via the button in the ribbon’s folder tab or right-click on folder)
    3. Permanently deleting (shift-delete) an item
    4. Closing the Archive / AutoArchive dialogs
    There is a more detailed article for your reference:
    Mailbox Quota in Outlook 2010 - general information and troubleshooting tips
    http://blogs.technet.com/b/outlooking/archive/2013/09/19/mailbox-quota-in-outlook-2010-general-information-and-troubleshooting-tips.aspx
    If you have any further questions, please let me know.
    Best regards,
    Eric

  • Nevv Palm TX will not sync my Outlook 2003 calendar

    My new TX will not sync my Outlook calendar (or the Palm calendar for that matter).  Will do tasks, memos, contacts.
    I have re-installed the Palm software several times now.  Still no luck.  Here is the log from my last sync:
    HotSync operation started for JeffS on 11/14/08 13:31:40
    OK Quick Install
    OK VersaMail
    Outlook Notes
    - Fast Sync
    OK Outlook Notes
    OK Documents To Go
    Outlook Calendar
    - Do Nothing
    OK Outlook Calendar
    Outlook Contacts
    - Fast Sync
    OK Outlook Contacts
    Outlook Tasks
    - Fast Sync
    OK Outlook Tasks
    -- Backing up CarrierProfiles2 to C:\Program Files\Palm\JeffS\Backup\CarrierProfiles2.PDB
    -- Backing up NetworkProfiles2 to C:\Program Files\Palm\JeffS\Backup\NetworkProfiles2.PDB
    -- Backing up AddIt-Content to C:\Program Files\Palm\JeffS\Backup\AddIt-Content.PDB
    -- Backing up AdditMyPalm-Content to C:\Program Files\Palm\JeffS\Backup\AdditMyPalm-Content.PDB
    -- Backing up AdditShop-Content to C:\Program Files\Palm\JeffS\Backup\AdditShop-Content.PDB
    -- Backing up AddIt_newstips to C:\Program Files\Palm\JeffS\Backup\AddIt_newstips.PDB
    -- Backing up psysLaunchDB to C:\Program Files\Palm\JeffS\Backup\psysLaunchDB.PDB
    -- Backing up PmTraceDatabase to C:\Program Files\Palm\JeffS\Backup\PmTraceDatabase.PDB
    -- Backing up Saved Preferences to C:\Program Files\Palm\JeffS\Backup\Saved_Preferences.PRC
    -- Backing up Queries to C:\Program Files\Palm\JeffS\Backup\Queries.PDB
    OK Backup
    HotSync operation completed on 11/14/08 13:32:00
    Post relates to: Palm TX

    Outlook Calendar
    - Do Nothing
    OK Outlook Calendar
    Check your conduit settings and change it from do nothing to synchronize
    To get to your conduit settings right click on the hotsync manager and select custom then go calendar select change and set to synchronize.
    Post relates to: Centro (Sprint)

  • Emails are only being delivered to the WebOutlook inbox and not my desktop outlook

    1.  Big Problem:  How do I get emails sent to my primary email address (name @ wealthblush dot com hosted by Go Daddy) to go to both the
    Outlook Web App inbox AND the inbox of my desktop Outlook 2013? They only go to
    Outlook Web App and not my desktop Outlook 2013.
    How is the email account configured in Outlook (POP3, IMAP or Exchange):
    POP/SMTP is for the user @ wealthblush dot com - this is the one where the email ONLY goes to the Outlook Web App, but not into Desktop Outlook 2013.
    IMAP/SMTP  is for the user @ charter dot net email. Emails go to both clients, but if I delete on one client it is not deleted on the other.
    Exchange/ActiveSync is the outlook.com email and it only goes to my desktop Outlook.
    I'm not getting any error messages. Mail is being delivered to the user @ wealthblush dot com, but only to Outlook Web App and NOT my desktop Outlook.
    2.  How can I change the inbox an email account puts incoming emails into? I read somewhere the way to do this is to create a search folder? This question is actually in advance of fixing
    question number 1 above.
    3.   I don't know how I should configure my emails with the new Outlook 2013 now being in the cloud:
        - I have an @ outlook dot com email I setup when MS came out with the free outlook dot com (hotmail), but I never used it because the reminders didn't work the same as in desktop outlook (not being able to snooze for a few hours
    or days or weeks if I remember right and the way we get the alerts too).
        - I also have an email with my ISP (@ charter dot net) which is a mix of personal and business emails. I've had this account for over 10 years.
        - Finally, I have a business website (www dot wealthblush dot com) hosted by GoDaddy with one real email @ wealthblush dot com. I've already setup the aliases for several other emails in my new office 365 account (support,
    sales, webmaster at wealthblush dot com) which are configured to pass into specific folders using Outlook 2013 Rules in my desktop outlook. I'm not sure if those rules are replicated into the office 365 account.
    I still want the aliases to go into those folders like before.
    4.  In the case of my outlook.com email, they do go to both inboxes (on the web and desktop), but when I delete an email from one place, shouldn't it get deleted in the other place as well? How do I get them to synch?
    5.   And then there's my existing .pst files. I have 4 of them with old emails I've saved over the years that takes up just over one GB. I save these .pst files to DVD everyday so I can go back to look at something if I need to (and for hard drive
    crashes). Does MS want me to import all that stuff to their servers and get rid of my .pst files? Does MS want me to put everything into one .pst file? It seems like it? If I do then I assume things need to be synchronized all the time between my file and
    your .pst file? The synchronization process is as close as you can get to real-time, right? Or does each individual change get sent as it happens?
    6.  I also have a skydrive account from a while ago too. Is this where I should put my documents so they're accessible when I'm not at my desk? Now, that would be a LOT of data (probably close to 80 GB). Or, is the intention for us users
    to only put certain current docs in this area. I assume these files can be synced with my desktop too, right? But I don't know how to. Do you keep old versions of the files in skydrive so we can recover them? I want to know if I can use your service to hold
    my files (they would ONLY exist on your system and you'll back them up and I can get old versions back when needed).
    7.  Is an option to keep everything on my desktop 2013 like I did in 2010 of Outlook, bypassing the cloud and MS mail servers all together?
    Sorry about all the questions, but I'm just getting the feel for your approach and need to decide how this all should fit together, do it, then go back to my business. I'm by myself at my company right now, but I'm planning on hiring a few people
    real soon too so I need to keep this in mind. I've worked with Outlook since it came out, and I've configured it, but mainly only for myself and my family.

    R1: Seems you didn't configure you email account in your Outlook client properly. please refer to the following KB article and try to create a new mail profile to configure your email account again:
    http://support.microsoft.com/kb/2758902
    R2: Do you want create subfolders under Inbox to category your emails? If so, we can just right click on Inbox > select New Folder... After that, we need to create rules to move or copy your emails to each subfoler. See:
    http://office.microsoft.com/en-us/outlook-help/manage-email-messages-by-using-rules-HA010355682.aspx
    Besides, in order to avoid confusion and keep track of troubleshooting steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently. Concerning your other question, I suggest we create new posts for your other questions via:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=outlook
    Thanks for the understanding.
    Steve Fan
    TechNet Community Support

  • In outlook 2013 Add-In, Adding dynamic menu to splitButton idMso="DialMenu" is working and the same code is not working in outlook 2010 Add-In.

    In outlook 2013 Add-In, Adding dynamic menu to <splitButton idMso="DialMenu"> is working and the same code is not working in outlook
    2010 Add-In. please let me know, if i am missing something. Below is the xml and screen shot
    <contextMenu idMso="ContextMenuFlaggedContactItem">
     <splitButton idMso="DialMenu">
              <menu>
                <dynamicMenu id="CallContactwithFreedomvoice
    " label="CallContactwithFreedomvoice" 
                            getContent="OnGetContenttest"                           insertAfterMso="Call"/> 
            </menu>       </splitButton>    </contextMenu> 

    Hi Narasimha prasad2,
    Based on the description, the context menu for the flagged contact doen't work in Outlook. I am tring to rerpoduce this issue however failed.
    I suggest that you check the state of the add-in first to see wether the add-in was loaded successfully.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ITunes 11 is not syncing my Outlook 2007 calendar on my iPhone 5 on a Windows 7 PC

    ITunes 11 is not syncing my Outlook 2007 calendar on my iPhone 5 on a Windows 7 PC.
    I have tried a number of things such as:
    Repairing the outlook.pst file with scan pst.exe. This did not work.
    Uninstalling all apple software on the PC and then reinstalling it. This did not work.
    Turning addins off and on in outlook. This did not work.
    Changing outlook.pst files. This did not work.
    Replacing iPhone content with content on PCM. This did not work.
    Restoring the iPhone does not work.
    Nothing works.
    I have been working on this issue for a couple of days. It is driving me crazy. I am inches from formatting my hard drive.
    Everything worked fine until the most recent iTunes update.

    Same here. Spent about an hour trying various solutions to similar problems on other forums before discovering this one, which matches my symptoms exactly. iPad doesn't have this issue, only iPhone 4S.
    My iTunes Match renews in two days. This is about the umpteenth disappointment with the service. I almost certainly won't be renewing now.

  • HT1349 I am trying to figure out why on my "exchange" calendar - info I have in the body of the appointment  does not show on the iPad.

    I am trying to figure out why info in the body of a calendar appointment does not show up on the iPad. The appointment shows up, but not the notes I had added. Does that info get pushed and if so what setting am I missing?

    If Honda says you need the original CDs, you need the original CDs.

  • Iphone calendar does not synch with outlook

    Starting on Feb 1, my iPhone (5s) does not synch with Outlook (2013). Have tried many things:
    1. Building new Outlook data file (.pst)
    2. Changing synch settings in iTunes
    3. Changing USB cables
    4.Removing/reinstalling iTunes and other Aplle software
    Problem seems to have started after upgrading iOS and iTunes.
    Any idea?

    Yes, that does make sense. You can transfer data from the old .pst file without saving it as a .pst file. Archive your current .pst. Then save your contacts as vCards, and save your calendar as an iCalendar file. After creating the new .pst file, you can open the old calendar in the new .pst as well as import the vCards back to your contacts.
    Last question, did you run the scanpst.exe program to review your .pst file for corruption? You will find that, if I remember correctly, in the Office program folder. You can search for it. Run that, it prompts you for your .pst file and will scan it for problems. But saying that it started on a specific date would lead me to believe it is something you probably added that day. Out of all of the time I've been using Outlook 2007, 2010, and 2013 with my iPhones, and I've had them since the first one, I've only had 2 small events, and copying over the .pst has fixed them both.

Maybe you are looking for

  • PI 7.1 Performance Monitoring - Advanced Adapter Engine (AAE)

    Hi Experts, how can i use the "Performance Monitoring" from the RWB, to see all the messages (including the messages from the AAE) for a specific timeperiod? For example, i want to know how many messages go through the PI (including AAE) on one day.

  • How to trace Logs for WebService connectivity - 3rd Party to ECC

    Hi Experts, Basically it's a simple scenario, the 3rd party will send a soap request with the information in it and wiill be sent to ECC and be written on a table. I'm wondering on how to trace logs on the soap request sent from 3rd party to an ECC e

  • Can I use asynchronous update on a chart I generate from my own DB Package?

    I have created a database package that will generate a stacked bar graph in SVG with dynamically generated series based on a requirement I have been given. I would like to know if it is possible to take advantage of the asynchronous update mechanism

  • Combo chart in WAD

    Hi All, I have two queries one is displaying Current week Sales and the other one is displaying Previous week sales.I have assigned the column Chart for Current week query in WAD,i want to display the last week data also in the same chart as a Line g

  • How to streamline process of adding descriptions in Book mode

    Working through completing a Photo Book. Understand how to add text to each photo and make changes. My question concerns streamlining the process of adding my descriptions I attached to each photo when first ordered. Instead of having to click to the