function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
asoyerasoyer 

Suppress Confrimations via the Dictionary.xml file

How do I configure the L_Dictionary.xml file to suppress the "Confirm Delete" and "Confirm Changes" Advanced Options?

 

We are pushing the configurations for Connect for Lotus Notes out to users via the L_Dictionary.xml file. I would like the xml file to uncheck the boxes under Salesforce Options->Event->Advanced->Confirmation tab.

mannelnmanneln

Here is the reply I got from a Premier Support person:

 

While this is not possible via the L_Dictionary, I believe I may have found a work around you could use.  The settings for confirmation are being controlled by another file called "Settings.ini" in the following location:

C:\Documents and Settings\<user name>\application Data\salesforce.com\SM

To configure the Confirmation settings you can add the following 2 entry to each section (such as contacts, events or task)

ConflictDelete=0
ConflictChange=0

0 means the box is unchecked and 1 means the box is checked. After making these changes you need to make the setting.ini file read only to prevent users from making any changes from the Salesforce.com options in Lotus Notes

See an example of the modified setting.ini file below

Let me know if you have any questions

*************** Example of settings.ini file *******************
[Contact Options]
FolderID=00000000FE91B ...
IsSyncing=0
AlwaysMarkForSync=0
Direction=0

[Event Options]
FolderID=00000000FE91BF8DE4F...
IsSyncing=0
AlwaysMarkForSync=0
Direction=0
ConflictDelete=0
ConflictChange=0
FolderPath=Mailbox - username\Calendar

[Task Options]
FolderID=00000000FE91BF8DE4FCE74EA41646D875F6EC4C0100341E19E15D9D5242ABDC28902F61026B000000796AAE0000
IsSyncing=0
AlwaysMarkForSync=0
Direction=0
FolderPath=Mailbox - username\Tasks
ConflictDelete=0
ConflictChange=0

 

 

I have not yet tested this configuration.  Let me know if that works for you.

 

---Nick