FJ Software Foren-Übersicht  
 Homepage   •  Suchen   •  FAQ   •  Mitgliederliste   •  Registrieren   •  Login
 Outlook sync issue persists with recurrent/recurring events Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Neues Thema eröffnenNeue Antwort erstellen
Autor Nachricht
willy



Anmeldedatum: 02.08.2020
Beiträge: 8

BeitragVerfasst am: So Aug 02, 2020 16:56 Antworten mit ZitatNach oben

First, another big THANKS to FJ for this amazing software. I've been using it for many years because I don't want to sync through the cloud, so please don't forget to donate!


PROBLEM: Most, but not all, of my recurring event scheduled for 15:00-15:01 change to 00:00-00:00 when I sync my Google Pixel 3a (Android client 1.0.72) with my new computer (Windows 10 Pro version 1909, Outlook 2007 SP3, MyPhoneExplorer 1.8.14). Even if I accept the sync (MPE > Outlook), it will still pop up every time. I did not have any problems with my old computer (Windows 7 Pro, Outlook 2007 SP3, MyPhoneExplorer 1.8.7).


BACKGROUND: When I first started using MPE around 2013, I found that my all day recurring appointments (e.g., birthdays) didn't work well when I changed time zones as it would store it 2020-08-02 00:00-23:59 GMT-5, so when I changed to GMT-8 the event would span 2 days 2020-08-01 21:00 to 2020-08-02 20:59. To fix this, I converted all my recurring events to be in the middle of the day 15:00-15:01 and I no longer had the issue with spanning 2 days.


CURRENT ISSUE: So, I don't know if this is an issues with upgrading to Windows 10 Pro version 1909 (there's even a 2004 available now) and/or MyPhoneExplorer 1.8.14. I am still running the same Android client 1.0.72 on the same phone, only the computer changed.
Benutzer-Profile anzeigenPrivate Nachricht senden
willy



Anmeldedatum: 02.08.2020
Beiträge: 8

BeitragVerfasst am: So Aug 02, 2020 18:15 Antworten mit ZitatNach oben

UPDATE: On my new computer (still Windows 10 Pro x64 version 1909), I reverted MyPhoneExplorer from 1.8.14 to 1.8.8 (I couldn't find 1.8.7 at the time). In MPE, when I look at the initial calendar (I migrated the database from my old computer), everything looks correct with the 15:00-15:01 appointments. Literally, the second I synchronize the calendar (even before the dialog window of changes appears), I see most of my 15:00-15:01 appointments change to 00:00-00:00. However, this time after about 3 rounds (Force Outlook > MPE, then delete entries from MPE, then re-add entries to MPE), the 15:00-15:01 recurring appoints stick and no more 00:00-00:00 appointments.

Unfortunately, MPE crashes every time it tries to download the call log, so I've removed that from my multi-sync and it seems to be working. I'm hoping that we can resolves this so I can use the latest version of MPE.
Benutzer-Profile anzeigenPrivate Nachricht senden
gautxori



Anmeldedatum: 03.04.2015
Beiträge: 41

BeitragVerfasst am: Mi Aug 05, 2020 19:44 Antworten mit ZitatNach oben

I suggest you try to install Debug release (http://www.fjsoft.at/files/MyPhoneExplorer_DebugUpdate.exe) over latest 1.8.14 MPE version.

I had no problems with recurring appointments ever since.
Benutzer-Profile anzeigenPrivate Nachricht senden
willy



Anmeldedatum: 02.08.2020
Beiträge: 8

BeitragVerfasst am: Do Aug 06, 2020 05:07 Antworten mit ZitatNach oben

@gautxori, thanks for the suggestion. I installed 1.8.14, then installed the DebugUpdate you provided and still have the same issue Sad

I believe I found the culprit. In Outlook 2007, there's a hidden field called "all day event" that is only visible when you view your calendar in a table format (e.g., All Appointments) AND you go to the field chooser to make "All Day Events" visible. This is independent of your recurrence rules (I have mine set for 15:00-15:01, a 1 minute duration). It's stupid because you can't get to this field when editing the appointment directly. What's even worse, I'm not able to uncheck the box for All Day Event (I get an error "You don't have the permission to move this item."). The error I'm experiencing applies to all my calendar events with the hidden attribute enabled.

Any ideas on how to uncheck the "all day event" attribute? The only work around is to recreate my 100+ recurring events because Outlook 2007 won't let me export and import recurring meeting in bulk.

If I export my calendar appointment to a CSV, the "all day event" field shows up there.
Benutzer-Profile anzeigenPrivate Nachricht senden
gautxori



Anmeldedatum: 03.04.2015
Beiträge: 41

BeitragVerfasst am: Do Aug 06, 2020 10:34 Antworten mit ZitatNach oben

willy hat Folgendes geschrieben:
Any ideas on how to uncheck the "all day event" attribute?.
.

You're welcome. You'd better try with a VB macro:
Code:

Sub RemoveCurrentFolderRecurrences()
   Dim CalFolder As Outlook.MAPIFolder
   Dim CalItems As Outlook.Items
   Dim ResItems As Outlook.Items
   Dim sFilter As String
   Dim cAppt As Object
 
   ' Use the selected calendar folder
   Set CalFolder = Application.ActiveExplorer.CurrentFolder
   Set CalItems = CalFolder.Items
   CalItems.IncludeRecurrences = True
   'create the Restrict filter by recurrence
   sFilter = "[IsRecurring]  = True"
   Set ResItems = CalItems.Restrict(sFilter)
 
   'Loop through the items in the collection.
   For Each cAppt In ResItems
        If cAppt.IsRecurring Then
             ' cAppt.GetRecurrencePattern.PatternEndDate = Now()
              cAppt.ClearRecurrencePattern
              cAppt.Save
        End If
   Next
End Sub




based on https://www.slipstick.com/developer/copy-recurring-appointments-meetings-series/, https://docs.microsoft.com/es-es/office/vba/api/outlook.appointmentitem.getrecurrencepattern and https://stackoverflow.com/questions/32825342/copy-recurring-appointment-in-outlook-with-vba-macro
Benutzer-Profile anzeigenPrivate Nachricht senden
willy



Anmeldedatum: 02.08.2020
Beiträge: 8

BeitragVerfasst am: So Aug 09, 2020 06:16 Antworten mit ZitatNach oben

@gautxori, I had been playing with some VB code I found on the internet to attempt to uncheck the All Day Event flag (for images, see my post in https://answers.microsoft.com/en-us/msoffice/forum/all/outlook-2007-you-dont-have-the-permission-to-move/1f99bcd9-927a-4f18-beed-03fda1140eeb) but don't really know how to code Visual Basic effectively.

Thanks for the macro code. After running it a handful of times (not sure why it didn't change everything in one pass), it was able to remove the recurrence, which removed the All Day Event flag. Unfortunately, now I need to rebuild all the recurrence. The good news is that when you remove, then re-add the recurrence, the All Day Event flag is finally cleared.

As usual, I probably spent more time playing around with VB code than it would have been for me to just rebuild all 100+ appointments without the All day Event.

Or maybe the time zone change for all-day events has been changed since I originally tried to use MPE. That I will need to test as well.
Benutzer-Profile anzeigenPrivate Nachricht senden
gautxori



Anmeldedatum: 03.04.2015
Beiträge: 41

BeitragVerfasst am: So Aug 09, 2020 07:36 Antworten mit ZitatNach oben

willy hat Folgendes geschrieben:
... but don't really know how to code Visual Basic effectively.
...it was able to remove the recurrence, which removed the All Day Event flag.
As usual, I probably spent more time playing around with VB code than it would have been for me to just rebuild all 100+ appointments without the All day Event.

It happens to all of us when starting coding: time flies. Sad Those flies are quite distracting, and Microsoft technicians seem not to be smart enough to blow them away. But after so many scripts, I can say my processing data (be it 20,50 or 100 records) by programming macros usually takes shorter and is more constructive.
One more clue: Visual Basic is quite easy to code, and for automation in windows, be it office or even the shell (you can search for "Visual Basic for Applications", or "Visual Basic Scripting"), you will find that despite being somewhat obsolete it's still the best approach. In short, when you get stuck try to find a solution by programming a macro. But do not forget to see the sun! Smile
Benutzer-Profile anzeigenPrivate Nachricht senden
willy



Anmeldedatum: 02.08.2020
Beiträge: 8

BeitragVerfasst am: So Aug 09, 2020 22:20 Antworten mit ZitatNach oben

So my theory was correct, the Outlook attribute AllDayEvent was causing appointment synchronization issues in MPE 1.8.14 that I had not experienced in 1.8.8 and early. The only way to remove the AllDayEvent attribute was to remove the recurrence, save, then add the recurrence back. The AllDayEvent attribute will automatically enable if you create an appointment from the Month view (my typically view) because it is assuming you are creating an All Day Event.

See https://answers.microsoft.com/en-us/msoffice/forum/msoffice_outlook-mso_win10-mso_2007/outlook-2007-you-dont-have-the-permission-to-move/1f99bcd9-927a-4f18-beed-03fda1140eeb for how I fixed my Outlook PST file so that I can run MPE 1.8.14.

Thanks to @gautxori for the help and encouragement. Unfortunately, when you remove the recurrence, it doesn't preserve the original start date. Here's another version of VB code to remove recurrence from your selection:

Code:
Sub ClearRecurrence()
' Removes recurrence from selection, but loses original start date
    Dim currentExplorer As Explorer
    Dim Selection As Selection
    Dim oAppt As AppointmentItem 'Object
   
    Set currentExplorer = Application.ActiveExplorer
    Set Selection = currentExplorer.Selection

    For Each oAppt In Selection
        oAppt.ClearRecurrencePattern
        oAppt.Save
    Next
End Sub
Benutzer-Profile anzeigenPrivate Nachricht senden
gautxori



Anmeldedatum: 03.04.2015
Beiträge: 41

BeitragVerfasst am: Mo Aug 10, 2020 00:15 Antworten mit ZitatNach oben

willy hat Folgendes geschrieben:
Unfortunately, when you remove the recurrence, it doesn't preserve the original start date.

you can try to change your for loop with:
Code:
For Each oAppt In Selection
   If oAppt.IsRecurring Then
      Set RP = oAppt.GetRecurrencePattern
      ArrRecPat = Array(RP.RecurrenceType, RP.PatternStartDate, RP.PatternEndDate, _
      RP.DayOfMonth, RP.DayOfWeekMask, RP.MonthOfYear, RP.Interval, RP.Instance, RP.Duration)
      Set RP = Nothing
      oAppt.ClearRecurrencePattern
      oAppt.AllDayEvent = False
      With oAppt.GetRecurrencePattern
         .RecurrenceType = ArrRecPat(0)
         .PatternStartDate = ArrRecPat(1)
         .PatternEndDate = ArrRecPat(2)
         .DayOfMonth = ArrRecPat(3)
         .DayOfWeekMask = ArrRecPat(4)
         .MonthOfYear = ArrRecPat(5)
         .Interval = ArrRecPat(6)
         .Instance = ArrRecPat(7)
         .Duration = ArrRecPat(8)
      End With
      oAppt.Save
   End If
Next
Benutzer-Profile anzeigenPrivate Nachricht senden
Beiträge der letzten Zeit anzeigen:      
Neues Thema eröffnenNeue Antwort erstellen


 Gehe zu:   



Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Du kannst keine Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum nicht antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.

Powered by phpBB © 2001, 2002 phpBB Group :: FI Theme :: Alle Zeiten sind GMT + 1 Stunde
Deutsche Übersetzung von phpBB.de