Calendar profile problems after migration from 7.0. to 8.5.2

  • 28 Jan, 2011

Some new features was addet to calendar profile.   After convert some users from 7.0.4 to 8.5.2 some problems arrived.

I deleted the profile using the LotusScript  and instruct the user to recreate the profile.

Just put the code bellow in a button and send to the user.

Sub Click(Source as Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db=session.CurrentDatabase
Set doc=db.GetProfileDocument(“CalendarProfile”)
Call doc.remove(True)
If doc Is Nothing Then
MsgBox “Profile Document Was Successfully Removed”
Else
MsgBox “Profile Document WAS NOT Removed”,48
End if
End Sub

Related Posts

WebSphere Application Server Configuration Comparison Tool

  • 06 Sep, 2019

The Configuration Comparison Tool (CCT) is a lightweight wsadmin script and Python report generation script which will produce HTML reports on configuration settings for the following types of resourc

WebSphere Application Server Configuration Comparison ToolRead More

Configuring Cross Origin Resource Sharing on a Liberty server

  • 08 Mar, 2018

You can enable Cross Origin Resource Sharing (CORS) for your web applications on a Liberty server. Enabling CORS will allow JavaScript clients to make requests against your application on the Liberty

Configuring Cross Origin Resource Sharing on a Liberty serverRead More

Recommended values for web server plug-in config

  • 26 Sep, 2017

In the web server plug-in, what do the LoadBalanceWeight, MaxConnections, ConnectTimeout, ServerIOTimeout, RetryInterval, IgnoreAffinityRequests, and GetDWLMTable options mean and what are the recomme

Recommended values for web server plug-in configRead More