Skip to content

Commit

Permalink
Merge pull request #4 from seanmcne/seanmcne-patch-2
Browse files Browse the repository at this point in the history
Seanmcne patch 2
  • Loading branch information
seanmcne authored Jan 10, 2018
2 parents 349afa0 + f403fe1 commit 731fa6d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion mspfedyn_/OrgDbOrgSettings/Settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1105,9 +1105,21 @@
supportUrl="http://support.microsoft.com/kb/2691237"
urlTitle="KB 2691237"
description="Default 5 seconds. Override time (in seconds) to wait for the office shell service to respond upon rendering the main UI." />
<orgSetting
minSupportedVersion="8.2.2.840"
maxSupportedVersion="8.999.9999.9999"
name="DistinctPhysicalAndLogicalDeletesForExchangeSync"
isOrganizationAttribute="false"
min=""
max=""
defaultValue="False"
settingType="Boolean"
supportUrl="http://support.microsoft.com/kb/2691237"
urlTitle="KB 2691237"
description="Default False. Server-Side synchronization mechanism to distinguish between Logical and Physical deletes of records in CRM &lt;b&gt;False&lt;/b&gt;: *DEFAULT* No distinction between physical and logical deletes for exchange sync delete scenario. &lt;b&gt;True&lt;/b&gt;: Physical and logical deletes will be distinguished for exchange sync record deletions. &lt;br&gt;&lt;br&gt;Example: Jayne has Server-Side synchronization (SSS) enabled and tracked appointment 'bike repair' in CRM. If Jayne lost read access to 'bike repair' (logical delete of 'bike repair' for Jayne), then SSS with default behavior will delete 'bike repair' from Exchange. With DistinctPhysicalAndLogicalDeletesForExchangeSync==true, logical deletions of 'bike repair' for Jayne will NOT delete 'bike repair' from Exchange." />
<orgSetting
minSupportedVersion="9.0.0.0"
maxSupportedVersion="9.0.0.0"
maxSupportedVersion="9.999.9999.9999"
name="DefaultHeightForWizardReports"
isOrganizationAttribute="false"
min=""
Expand Down
4 changes: 2 additions & 2 deletions mspfedyn_/OrgDbOrgSettings/orgDBOrgSettings.html
Original file line number Diff line number Diff line change
Expand Up @@ -758,8 +758,8 @@
_sortSettingsByName: function () {
//sort results array...
this._settings = this._settings.sort(function (a, b) {
if (a.name < b.name) { return -1 };
if (a.name > b.name) { return 1 };
if (a.name.toLowerCase() < b.name.toLowerCase()) { return -1 };
if (a.name.toLowerCase() > b.name.toLowerCase()) { return 1 };
return 0;
});
},
Expand Down

0 comments on commit 731fa6d

Please sign in to comment.