diff --git a/README.md b/README.md index f70ff06..36da1d1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/yagasoft/DynamicsCrm-NotificationCentre?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -### Version: 3.1.1.1 +### Version: 4.1.1.1 --- A CRM solution that injects a button into CRM's navigation bar, which shows notifications in near real-time from within CRM. @@ -19,17 +19,27 @@ A CRM solution that injects a button into CRM's navigation bar, which shows noti ### Guide -I will post a complete guide soon. + + Install + + Enable the Notifications Centre (NC) functionality in the Common Configuration entity (switch to NC Form after first save) + + Create a default NC Configuration record, or override for a specific user + + Assign the users the NC User/Admin security role + + Refresh -### Dependencies +### Install + + + Import solution found at [Dynamics365-YsCommonSolution](https://github.com/yagasoft/Dynamics365-YsCommonSolution). + + Import NC solutions from this repository + +## Screenshots + +![File](https://github.com/yagasoft/DynamicsCrm-NotificationCentre/raw/master/imgs/nc-new-notification.png) + +![File](https://github.com/yagasoft/DynamicsCrm-NotificationCentre/raw/master/imgs/nc-menu.png) - + Common.cs - + Can be found in the [DynamicsCrm-Libraries](https://github.com/yagasoft/DynamicsCrm-Libraries) repository - + Generic Base solution ([DynamicsCrm-BaseSolution](https://github.com/yagasoft/DynamicsCrm-BaseSolution)) - + CRM Logger solution ([DynamicsCrm-CrmLogger](https://github.com/yagasoft/DynamicsCrm-CrmLogger)) - ## Changes +#### _v4.1.1.1 (2021-12-08)_ ++ Fixed: proper v9 compatibility #### _v3.1.1.1 (2019-02-28)_ + Changed: moved to a new namespace #### _v2.1.1.1 (2018-09-11)_ diff --git a/Yagasoft.NotificationCentre.WebResources/CSS/ldv_NotificationsCentre.css b/Yagasoft.NotificationCentre.WebResources/CSS/ldv_NotificationsCentre.css index 3a2e5df..79a9596 100644 --- a/Yagasoft.NotificationCentre.WebResources/CSS/ldv_NotificationsCentre.css +++ b/Yagasoft.NotificationCentre.WebResources/CSS/ldv_NotificationsCentre.css @@ -25,11 +25,6 @@ /*#region Icon */ -#ncMainContainer -{ - /*width: 42px;*/ -} - #ncQuickCreate { /*text-shadow: 1px 1px 1px #cecece; @@ -72,7 +67,7 @@ margin-right: -10px; } -#ncCounter +.nc-counter-old { font-size: 0.76em; text-align: center; @@ -93,6 +88,28 @@ z-index: 99999; } +.nc-counter +{ + font-size: 0.76em; + color: white; + text-align: center; + vertical-align: middle; + left: 25px; + top: -31px; + position: absolute; + padding-top: 0px; + padding-left: 3px; + padding-right: 3px; + padding-bottom: 1px; + box-shadow: 0px 0px 5px #444; + border-radius: 2px; + background: #BF0000; /* Old browsers */ + background: -moz-linear-gradient(45deg, #BF0000 0%, #ED3434 70%, #F2797B 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(45deg, #BF0000 0%, #ED3434 70%, #F2797B 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(45deg, #BF0000 0%, #ED3434 70%, #F2797B 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + z-index: 99999; +} + /*#endregion Icon */ /*#region Popup */ @@ -167,10 +184,6 @@ box-shadow: 0px 1px 6px #000; } -#ncNewIconContainer -{ -} - #ncNewIcon { height: 17px; @@ -183,6 +196,7 @@ { margin-left: 2px; float: right; + color: #111; } #ncListContainer @@ -206,7 +220,7 @@ .ncSeparator { - margin: 0; + margin: 0.5px; } /*#endregion List */ @@ -217,9 +231,10 @@ { padding: 2px; margin: 0; + color: #111; } -.ncMessageTitle +.ncMessageTitle-old { position: relative; top: 50%; @@ -227,6 +242,18 @@ font-size: 1.1em; } +.ncMessageTitle +{ + position: relative; + top: 50%; + font-weight: bold; +} + +.nc-message-body +{ + font-size: 0.9em; +} + .ncSourceIcon { margin: 0px; diff --git a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentre.js b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentre.js index 14a22d3..499bc5d 100644 --- a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentre.js +++ b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentre.js @@ -105,6 +105,11 @@ function InitRefreshInterval() } } +function NcIsNew() +{ + return !!$('.nc-new').length; +} + function CreatePalette() { try @@ -452,7 +457,7 @@ var NcMenu = function() '' + '') .css({ - top: pos.top + 62 + 'px', + top: pos.top + (NcIsNew() ? 29 : 62) + 'px', left: pos.left - 2 + 'px' }); $('body').append(ncFrame); @@ -479,7 +484,7 @@ var NcMenu = function() { try { - if (element.scrollTop() + element.innerHeight() >= element[0].scrollHeight) + if (element.scrollTop() + element.innerHeight() + 0.5 >= element[0].scrollHeight) { showNextBatch(); } @@ -551,7 +556,8 @@ var NcMenu = function() if (!$(event.target).closest('#ncFrame').length && !$(event.target).closest('#ncIcon').length) { - for (var i = 0; i < iframes.length; i++) + // TODO + for (var i = 1000000; i < iframes.length; i++) { var contentWindow = iframes[i].contentWindow; @@ -703,7 +709,7 @@ var NcMenu = function() { pagingInfo.PagingCookie = data.NewCookie; - var results = JSON.parse(data.Messages); + var results = JSON.parse((data.Messages).replace(/\\"/g, '\"')); var newMessages = []; for (var i = 0; i < results.length; i++) @@ -922,7 +928,7 @@ function GetUnreadMessages(callback) { try { - var results = JSON.parse(data.Messages); + var results = JSON.parse((data.Messages).replace(/\\"/g, '\"')); var unread = $.map(results, function(e) { @@ -993,7 +999,7 @@ function GetMessage(id, callback) { try { - var message = JSON.parse(data.Messages)[0]; + var message = JSON.parse((data.Messages).replace(/\\"/g, '\"'))[0]; if (message) { @@ -1079,7 +1085,7 @@ function BuildMessageElement(message, width, parentFrameJq, suffix) var titleElement = $('
' + (sourceImage ? '' : '') + - '
' + + '
` + message.title + '
' + '
'); @@ -1150,7 +1156,7 @@ function BuildMessageElement(message, width, parentFrameJq, suffix) titleElement.append(readAnchorElement); } - var bodyElement = $('
' + + var bodyElement = $(`
` + (IsHtml(message.message) ? '(Message is in HTML format; hover to view)' : message.message) + @@ -1355,7 +1361,7 @@ function SetMessageRead(readAnchorElement, messageElement, messageid) function GetValueFromLocalStorage(key) { - return JSON.parse(localStorage.getItem(key)); + return JSON.parse((localStorage.getItem(key)).replace(/\\"/g, '\"')); } function StoreValueInLocalStorage(key, value) diff --git a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreConfig.js b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreConfig.js index aa96832..325d328 100644 --- a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreConfig.js +++ b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreConfig.js @@ -1,9 +1,9 @@ -/// -/// -/// +/// -function OnLoad() +function OnLoad(executionContext) { + SetAnchoredExecutionContext(executionContext); + if (!GetFieldValue(Sdk.NotificationsCentreConfig.Name)) { SetFieldValue(Sdk.NotificationsCentreConfig.Name, diff --git a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreForm.js b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreForm.js index f0f97e0..2bdd422 100644 --- a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreForm.js +++ b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreForm.js @@ -1,9 +1,9 @@ -/// -/// -/// +/// -function OnLoad() +function OnLoad(executionContext) { + SetAnchoredExecutionContext(executionContext); + if (GetFormType() === FormType.Create || GetFormType() === FormType.QuickCreate) { SetFieldValue(Sdk.NotificationMessage.NotificationSource, diff --git a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreRibbon.js b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreRibbon.js index 051380a..bd05789 100644 --- a/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreRibbon.js +++ b/Yagasoft.NotificationCentre.WebResources/JavaScript/ldv_NotificationsCentreRibbon.js @@ -128,13 +128,25 @@ function AddNotificationsIcon() '' + '' + '' + - '' + + '' + //'' + '' + '' + '|' + '' + ''); + + + NcParent.$('div[data-id="topBar"]').children(":last").children(":first") + .prepend(''); + NcParent.$('#ncMainContainer').addClass(NcParent.$('[data-id="searchLauncher"]').attr('class')); } catch (e) { @@ -211,11 +223,11 @@ function FetchConfiguration(callback) { try { - NcParent.NcSettings.CountPerPage = config["ldv_countperpage"]; - NcParent.NcSettings.RefreshInterval = config["ldv_refreshinterval"]; - NcParent.NcSettings.CounterLimit = config["ldv_counterlimit"]; + NcParent.NcSettings.CountPerPage = config["ldv_countperpage"] || 10; + NcParent.NcSettings.RefreshInterval = config["ldv_refreshinterval"] || 5; + NcParent.NcSettings.CounterLimit = config["ldv_counterlimit"] || 10; NcParent.NcSettings.IsPopupEnabled = config["ldv_ispopupenabled"]; - NcParent.NcSettings.PopupTimeout = config["ldv_popuptimeout"]; + NcParent.NcSettings.PopupTimeout = config["ldv_popuptimeout"] || 5; } catch (e) { diff --git a/crm-solution/Entities/ldv_genericconfiguration/Entity.xml b/crm-solution/Entities/ldv_genericconfiguration/Entity.xml index 8c797c5..24fb223 100644 --- a/crm-solution/Entities/ldv_genericconfiguration/Entity.xml +++ b/crm-solution/Entities/ldv_genericconfiguration/Entity.xml @@ -1,18 +1,8 @@  - ldv_genericconfiguration - 10005 + ldv_genericconfiguration - - - - - - - - - bit @@ -38,10 +28,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 0.0.0.1 + 0.1.1.1 1 @@ -80,6 +76,7 @@ 0 0 + 0 0 0 0 @@ -87,6 +84,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -104,45 +103,17 @@ 0 0 1.4.5.2 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 ldv_crmlogconfig32png ldv_crmlogconfig16png + ldv_crmlogconfig16png 0 - 1 0 0 - 1 0 + 0 - - - 10005 - {843a647f-c396-e611-80bb-00155d5f3d01} - - - - 1.5.7.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessage/Entity.xml b/crm-solution/Entities/ldv_notificationmessage/Entity.xml index 8afe8f2..708572e 100644 --- a/crm-solution/Entities/ldv_notificationmessage/Entity.xml +++ b/crm-solution/Entities/ldv_notificationmessage/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationmessage - 10021 @@ -38,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 textarea 8192 @@ -54,6 +59,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -70,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -84,7 +96,9 @@ systemrequired ObjectTypeCode|ValidForAdvancedFind|ValidForGrid auto + 0 1 + 0 0 1 0 @@ -99,6 +113,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 activitypointer_activitytypecode @@ -132,6 +152,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 duration 0 2147483647 @@ -166,6 +192,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -200,6 +232,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -224,7 +262,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -235,12 +273,18 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi + 8 1 2 4 - 8 @@ -263,7 +307,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -274,12 +318,18 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi + 8 1 2 4 - 8 @@ -312,6 +362,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 socialprofile_community @@ -328,7 +384,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 1 0 @@ -343,6 +401,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -361,7 +425,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 1 0 @@ -376,6 +442,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -393,7 +465,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -408,6 +482,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -433,7 +513,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -444,6 +524,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi 1 @@ -463,7 +549,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 1 0 @@ -478,6 +566,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -495,6 +589,7 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 1 0 @@ -511,6 +606,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 activitypointer_deliveryprioritycode @@ -544,6 +645,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1048576 @@ -577,6 +684,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 text 200 400 @@ -611,6 +724,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 text 1250 2500 @@ -635,7 +754,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -646,12 +765,18 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single + 8 1 2 4 - 8 @@ -667,6 +792,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -683,6 +809,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -700,7 +832,9 @@ systemrequired ValidForAdvancedFind|ValidForGrid auto + 0 1 + 0 0 1 0 @@ -715,10 +849,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 picklist - 8.1.1.2 + 3.1.1.1 1 @@ -785,10 +925,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 3.1.1.1 1 @@ -839,10 +985,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 3.1.1.1 1 @@ -877,7 +1029,9 @@ systemrequired ValidForAdvancedFind auto + 0 1 + 0 0 1 0 @@ -892,6 +1046,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 activitypointer_isregularactivity @@ -925,10 +1085,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 3.1.1.1 1 @@ -980,6 +1146,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -1014,6 +1186,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 1 1 @@ -1048,10 +1226,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 0.0.1.1 1 @@ -1103,6 +1287,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 999 ldv_notificationsource @@ -1136,6 +1326,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 text 36 72 @@ -1170,6 +1366,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 99999 @@ -1204,6 +1406,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -1237,6 +1445,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -1270,6 +1484,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -1303,10 +1523,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 3.1.1.1 1 @@ -1341,7 +1567,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 1 0 @@ -1356,6 +1584,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -1374,7 +1608,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 1 0 @@ -1389,6 +1625,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -1406,7 +1648,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -1421,6 +1665,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -1439,7 +1689,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid disabled + 0 1 + 0 0 1 0 @@ -1454,6 +1706,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -1478,7 +1736,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -1489,13 +1747,13 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi - - 1 - 2 - 4 - 8 - @@ -1517,7 +1775,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -1528,6 +1786,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -1546,6 +1810,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -1562,6 +1827,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -1596,6 +1867,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -1608,94 +1885,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 0 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -1710,6 +1908,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 10 @@ -1727,7 +1931,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -1743,6 +1949,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 9 @@ -1760,7 +1972,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -1776,6 +1990,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 8 @@ -1801,7 +2021,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -1812,6 +2032,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi 1 @@ -1830,7 +2056,9 @@ postponeactivityprocessinguntil none inactive + 0 1 + 0 0 1 0 @@ -1845,6 +2073,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -1879,10 +2113,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 picklist - 8.1.1.2 + 3.1.1.1 1 @@ -1938,6 +2178,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 @@ -1969,6 +2215,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -1977,88 +2229,6 @@ - - nvarchar - regardingobjectidname - regardingobjectidname - none - auto - 1 - 1 - 1 - 0 - 0 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 400 - 8000 - - - nvarchar - regardingobjectidyominame - regardingobjectidyominame - none - auto - 1 - 1 - 1 - 0 - 0 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 400 - 8000 - - - int - regardingobjecttypecode - regardingobjecttypecode - none - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 0 - 0 - 5.0.0.0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - partylist requiredattendees @@ -2073,7 +2243,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -2084,13 +2254,13 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi - - 1 - 2 - 4 - 8 - @@ -2112,7 +2282,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -2123,6 +2293,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi 8 @@ -2159,6 +2335,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 duration 0 2147483647 @@ -2193,6 +2375,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -2227,6 +2415,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -2243,7 +2437,9 @@ sendermailboxid none auto + 0 1 + 0 0 1 0 @@ -2258,6 +2454,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 9606 @@ -2276,7 +2478,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 1 0 @@ -2291,6 +2495,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -2307,7 +2517,9 @@ seriesid none auto + 0 1 + 0 0 0 0 @@ -2322,6 +2534,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 @@ -2352,6 +2570,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -2385,6 +2609,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 9750 @@ -2402,7 +2632,9 @@ slainvokedid none auto + 0 1 + 0 0 1 0 @@ -2417,6 +2649,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single 9750 @@ -2452,6 +2690,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 datetime 0 1 @@ -2486,6 +2730,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 @@ -2502,6 +2752,7 @@ auto 1 1 + 0 0 1 0 @@ -2516,9 +2767,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 state - 8.1.1.2 + 3.1.1.1 1 @@ -2580,9 +2837,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 3.1.1.1 1 @@ -2649,9 +2912,15 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 400 - 400 + 800 @@ -2682,6 +2951,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -2706,7 +2981,7 @@ 1 1 0 - 8.1.1.2 + 5.0.0.0 1 1 1 @@ -2717,12 +2992,18 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 multi + 8 1 2 4 - 8 @@ -2754,6 +3035,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 text 1250 2500 @@ -2787,6 +3074,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -2808,6 +3101,7 @@ 1 0 + 0 0 0 0 @@ -2815,6 +3109,8 @@ 0 UserOwned 0 + 0 + 0 1 CommunicationActivity 0 @@ -2859,6 +3155,7 @@ 0 1 0 + 0 True True @@ -2866,14 +3163,4 @@ - - - 10021 - {a6a13f06-c7c1-e611-80c1-00155d5f3d01} - - - - 0.0.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessage/FormXml/mainInteractionCentric/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml b/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml similarity index 97% rename from crm-solution/Entities/ldv_notificationmessage/FormXml/mainInteractionCentric/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml rename to crm-solution/Entities/ldv_notificationmessage/FormXml/main/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml index 3b991e4..5de0633 100644 --- a/crm-solution/Entities/ldv_notificationmessage/FormXml/mainInteractionCentric/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{29a2cba9-27a4-4d29-a14c-b1d042bd43c9}.xml @@ -3,8 +3,8 @@ {29a2cba9-27a4-4d29-a14c-b1d042bd43c9} 0.0.1.1 - 1 - 1 + 2 + 0
@@ -91,6 +91,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{b41126af-9e37-4c8b-8ff2-41ec6b4995eb}.xml b/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{b41126af-9e37-4c8b-8ff2-41ec6b4995eb}.xml index 95786c0..703e203 100644 --- a/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{b41126af-9e37-4c8b-8ff2-41ec6b4995eb}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/FormXml/main/{b41126af-9e37-4c8b-8ff2-41ec6b4995eb}.xml @@ -190,7 +190,7 @@ {670C7365-98AA-40EB-BFE5-B38F5C538CF5} false Grid - + false false 250 @@ -198,9 +198,9 @@ - - - + + + @@ -236,7 +236,7 @@ {109A79D2-DBCB-4351-8B1D-35960F35D86F} false Grid - + false false 250 @@ -244,9 +244,9 @@ - - - + + + @@ -282,7 +282,7 @@ {63621DA5-A754-4CC7-A00E-BB9AB699F062} false Grid - + false false 250 @@ -290,9 +290,9 @@ - - - + + + @@ -328,7 +328,7 @@ {05D8F50F-20A5-46FE-AD5D-E15F80F16473} false Grid - + false false 250 @@ -336,9 +336,9 @@ - - - + + + @@ -414,7 +414,7 @@ - + diff --git a/crm-solution/Entities/ldv_notificationmessage/FormXml/mobile/{5ebbd093-7a37-4ce1-93ca-fbdef2fa1d72}.xml b/crm-solution/Entities/ldv_notificationmessage/FormXml/mobile/{5ebbd093-7a37-4ce1-93ca-fbdef2fa1d72}.xml deleted file mode 100644 index c0aed7d..0000000 --- a/crm-solution/Entities/ldv_notificationmessage/FormXml/mobile/{5ebbd093-7a37-4ce1-93ca-fbdef2fa1d72}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {5ebbd093-7a37-4ce1-93ca-fbdef2fa1d72} - 0.0.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessage/FormXml/quickCreate/{606e486e-feb3-4f98-b754-8a154561f71c}.xml b/crm-solution/Entities/ldv_notificationmessage/FormXml/quickCreate/{606e486e-feb3-4f98-b754-8a154561f71c}.xml index 2a5d65f..ce2ecb1 100644 --- a/crm-solution/Entities/ldv_notificationmessage/FormXml/quickCreate/{606e486e-feb3-4f98-b754-8a154561f71c}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/FormXml/quickCreate/{606e486e-feb3-4f98-b754-8a154561f71c}.xml @@ -129,7 +129,7 @@ - + diff --git a/crm-solution/Entities/ldv_notificationmessage/RibbonDiff.xml b/crm-solution/Entities/ldv_notificationmessage/RibbonDiff.xml index 0bee42d..4baf507 100644 --- a/crm-solution/Entities/ldv_notificationmessage/RibbonDiff.xml +++ b/crm-solution/Entities/ldv_notificationmessage/RibbonDiff.xml @@ -56,7 +56,7 @@ - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{15ddaee4-6268-4802-bd78-3d4d54845297}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{15ddaee4-6268-4802-bd78-3d4d54845297}.xml index a85f46b..d946221 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{15ddaee4-6268-4802-bd78-3d4d54845297}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{15ddaee4-6268-4802-bd78-3d4d54845297}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10021 {15ddaee4-6268-4802-bd78-3d4d54845297} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{1935dd0d-8c97-4c01-b3fc-a54082868627}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{1935dd0d-8c97-4c01-b3fc-a54082868627}.xml index 65ba66a..62a87f8 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{1935dd0d-8c97-4c01-b3fc-a54082868627}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{1935dd0d-8c97-4c01-b3fc-a54082868627}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10021 {1935dd0d-8c97-4c01-b3fc-a54082868627} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{253c9104-841e-4741-82e0-70317e0ad423}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{253c9104-841e-4741-82e0-70317e0ad423}.xml index 90c59f8..466d982 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{253c9104-841e-4741-82e0-70317e0ad423}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{253c9104-841e-4741-82e0-70317e0ad423}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10021 {253c9104-841e-4741-82e0-70317e0ad423} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{5dc3c80d-c7c1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{5dc3c80d-c7c1-e611-80c1-00155d5f3d01}.xml index d6976e6..01bc454 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{5dc3c80d-c7c1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{5dc3c80d-c7c1-e611-80c1-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10021 {5dc3c80d-c7c1-e611-80c1-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{a0a9efaf-9195-48c8-b464-c3a390a2f51a}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{a0a9efaf-9195-48c8-b464-c3a390a2f51a}.xml index 50435d2..b457633 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{a0a9efaf-9195-48c8-b464-c3a390a2f51a}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{a0a9efaf-9195-48c8-b464-c3a390a2f51a}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10021 {a0a9efaf-9195-48c8-b464-c3a390a2f51a} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{b9cbc9ee-9e4e-470f-848e-f6ef516ef2ee}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{b9cbc9ee-9e4e-470f-848e-f6ef516ef2ee}.xml index bdb8c11..d7d1de3 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{b9cbc9ee-9e4e-470f-848e-f6ef516ef2ee}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{b9cbc9ee-9e4e-470f-848e-f6ef516ef2ee}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10021 {b9cbc9ee-9e4e-470f-848e-f6ef516ef2ee} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{cbcf728d-0a13-4b90-a65c-78f7a5312bd5}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{cbcf728d-0a13-4b90-a65c-78f7a5312bd5}.xml index 3c1b3da..4290d0d 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{cbcf728d-0a13-4b90-a65c-78f7a5312bd5}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{cbcf728d-0a13-4b90-a65c-78f7a5312bd5}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10021 {cbcf728d-0a13-4b90-a65c-78f7a5312bd5} - + diff --git a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{d5194508-1e44-454f-8aa4-06721a57a284}.xml b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{d5194508-1e44-454f-8aa4-06721a57a284}.xml index 9f006d9..67655cc 100644 --- a/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{d5194508-1e44-454f-8aa4-06721a57a284}.xml +++ b/crm-solution/Entities/ldv_notificationmessage/SavedQueries/{d5194508-1e44-454f-8aa4-06721a57a284}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10021 {d5194508-1e44-454f-8aa4-06721a57a284} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/Entity.xml b/crm-solution/Entities/ldv_notificationmessagerole/Entity.xml index 4a665e7..2319559 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/Entity.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationmessagerole - 10022 @@ -21,7 +20,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -36,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -52,7 +59,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -67,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -84,7 +99,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -99,6 +116,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -115,6 +138,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -131,6 +155,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -165,6 +195,12 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 100 200 @@ -199,6 +235,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -215,6 +257,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -231,6 +274,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -262,6 +311,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -278,7 +333,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -293,6 +350,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -309,7 +372,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -324,6 +389,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -341,7 +412,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -356,6 +429,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -372,6 +451,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -388,6 +468,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -422,6 +508,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -434,103 +526,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - - - - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -545,6 +549,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single @@ -560,7 +570,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -576,6 +588,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -591,7 +609,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -607,6 +627,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -625,6 +651,7 @@ auto 1 1 + 0 0 1 0 @@ -639,9 +666,15 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 state - 8.1.1.2 + 0.0.1.1 1 @@ -693,9 +726,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 0.0.1.1 1 @@ -746,6 +785,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -779,6 +824,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -800,6 +851,7 @@ 0 0 + 0 0 0 0 @@ -807,6 +859,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -848,19 +902,10 @@ 0 1 0 + 0 - - - 10022 - {db041305-c9c1-e611-80c1-00155d5f3d01} - - - - 0.0.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessagerole/FormXml/mainInteractionCentric/{f517de39-8413-4168-a8f2-23935781c63b}.xml b/crm-solution/Entities/ldv_notificationmessagerole/FormXml/main/{f517de39-8413-4168-a8f2-23935781c63b}.xml similarity index 94% rename from crm-solution/Entities/ldv_notificationmessagerole/FormXml/mainInteractionCentric/{f517de39-8413-4168-a8f2-23935781c63b}.xml rename to crm-solution/Entities/ldv_notificationmessagerole/FormXml/main/{f517de39-8413-4168-a8f2-23935781c63b}.xml index 3d38a40..7e28e0b 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/FormXml/mainInteractionCentric/{f517de39-8413-4168-a8f2-23935781c63b}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/FormXml/main/{f517de39-8413-4168-a8f2-23935781c63b}.xml @@ -3,8 +3,8 @@ {f517de39-8413-4168-a8f2-23935781c63b} 0.0.1.1 - 1 - 1 + 2 + 0
@@ -51,7 +51,7 @@ - + @@ -95,6 +95,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationmessagerole/FormXml/mobile/{da0e5abd-1662-4ebb-a32f-60a3ed855551}.xml b/crm-solution/Entities/ldv_notificationmessagerole/FormXml/mobile/{da0e5abd-1662-4ebb-a32f-60a3ed855551}.xml deleted file mode 100644 index b0e3a8f..0000000 --- a/crm-solution/Entities/ldv_notificationmessagerole/FormXml/mobile/{da0e5abd-1662-4ebb-a32f-60a3ed855551}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {da0e5abd-1662-4ebb-a32f-60a3ed855551} - 0.0.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{53279ad2-b716-49b7-9307-fbdf66179eb4}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{53279ad2-b716-49b7-9307-fbdf66179eb4}.xml index 9643c0d..329740a 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{53279ad2-b716-49b7-9307-fbdf66179eb4}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{53279ad2-b716-49b7-9307-fbdf66179eb4}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10022 {53279ad2-b716-49b7-9307-fbdf66179eb4} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{54c85b46-72db-4b8e-b065-600e3f12b39f}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{54c85b46-72db-4b8e-b065-600e3f12b39f}.xml index aa34c15..214b933 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{54c85b46-72db-4b8e-b065-600e3f12b39f}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{54c85b46-72db-4b8e-b065-600e3f12b39f}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10022 {54c85b46-72db-4b8e-b065-600e3f12b39f} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{5a051305-c9c1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{5a051305-c9c1-e611-80c1-00155d5f3d01}.xml index 01546b8..6fd4ea1 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{5a051305-c9c1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{5a051305-c9c1-e611-80c1-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10022 {5a051305-c9c1-e611-80c1-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{670c7365-98aa-40eb-bfe5-b38f5c538cf5}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{670c7365-98aa-40eb-bfe5-b38f5c538cf5}.xml index 178d089..afd53cd 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{670c7365-98aa-40eb-bfe5-b38f5c538cf5}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{670c7365-98aa-40eb-bfe5-b38f5c538cf5}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10022 {670c7365-98aa-40eb-bfe5-b38f5c538cf5} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{7ce244a8-c2dd-4aaa-85e9-89294ef43dca}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{7ce244a8-c2dd-4aaa-85e9-89294ef43dca}.xml index 01c72eb..3b4da63 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{7ce244a8-c2dd-4aaa-85e9-89294ef43dca}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{7ce244a8-c2dd-4aaa-85e9-89294ef43dca}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10022 {7ce244a8-c2dd-4aaa-85e9-89294ef43dca} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{959fcc60-362c-48b1-9d9b-a8561caf7eec}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{959fcc60-362c-48b1-9d9b-a8561caf7eec}.xml index f587633..f020b4a 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{959fcc60-362c-48b1-9d9b-a8561caf7eec}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{959fcc60-362c-48b1-9d9b-a8561caf7eec}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10022 {959fcc60-362c-48b1-9d9b-a8561caf7eec} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{9886647c-8eea-40cd-83bb-cf4d5912e85e}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{9886647c-8eea-40cd-83bb-cf4d5912e85e}.xml index dea1c70..5815854 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{9886647c-8eea-40cd-83bb-cf4d5912e85e}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{9886647c-8eea-40cd-83bb-cf4d5912e85e}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10022 {9886647c-8eea-40cd-83bb-cf4d5912e85e} - + diff --git a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{bad820a3-cbc1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{bad820a3-cbc1-e611-80c1-00155d5f3d01}.xml index b7c0afa..9ad8ef0 100644 --- a/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{bad820a3-cbc1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessagerole/SavedQueries/{bad820a3-cbc1-e611-80c1-00155d5f3d01}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10022 {bad820a3-cbc1-e611-80c1-00155d5f3d01} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/Entity.xml b/crm-solution/Entities/ldv_notificationmessageteam/Entity.xml index fec78d4..01eb59b 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/Entity.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationmessageteam - 10023 @@ -21,7 +20,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -36,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -52,7 +59,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -67,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -84,7 +99,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -99,6 +116,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -115,6 +138,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -131,6 +155,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -165,6 +195,12 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 100 200 @@ -199,6 +235,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -215,6 +257,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -231,6 +274,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -262,6 +311,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -278,7 +333,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -293,6 +350,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -309,7 +372,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -324,6 +389,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -341,7 +412,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -356,6 +429,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -372,6 +451,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -388,6 +468,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -422,6 +508,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -434,103 +526,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - - - - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -545,6 +549,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single @@ -560,7 +570,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -576,6 +588,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -591,7 +609,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -607,6 +627,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -625,6 +651,7 @@ auto 1 1 + 0 0 1 0 @@ -639,9 +666,15 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 state - 8.1.1.2 + 0.0.1.1 1 @@ -693,9 +726,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 0.0.1.1 1 @@ -746,6 +785,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -779,6 +824,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -800,6 +851,7 @@ 0 0 + 0 0 0 0 @@ -807,6 +859,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -848,19 +902,10 @@ 0 1 0 + 0 - - - 10023 - {9489ad57-c9c1-e611-80c1-00155d5f3d01} - - - - 0.0.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessageteam/FormXml/mainInteractionCentric/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml b/crm-solution/Entities/ldv_notificationmessageteam/FormXml/main/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml similarity index 94% rename from crm-solution/Entities/ldv_notificationmessageteam/FormXml/mainInteractionCentric/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml rename to crm-solution/Entities/ldv_notificationmessageteam/FormXml/main/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml index 2127322..0f029dc 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/FormXml/mainInteractionCentric/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/FormXml/main/{b8485cec-32a4-4f28-85d6-edb47ad4d547}.xml @@ -3,8 +3,8 @@ {b8485cec-32a4-4f28-85d6-edb47ad4d547} 0.0.1.1 - 1 - 1 + 2 + 0
@@ -51,7 +51,7 @@ - + @@ -95,6 +95,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationmessageteam/FormXml/mobile/{ccf02312-39f2-4c0e-841b-30ecf45c7efa}.xml b/crm-solution/Entities/ldv_notificationmessageteam/FormXml/mobile/{ccf02312-39f2-4c0e-841b-30ecf45c7efa}.xml deleted file mode 100644 index dd8fceb..0000000 --- a/crm-solution/Entities/ldv_notificationmessageteam/FormXml/mobile/{ccf02312-39f2-4c0e-841b-30ecf45c7efa}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {ccf02312-39f2-4c0e-841b-30ecf45c7efa} - 0.0.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{0dfe2c5d-8315-4beb-a437-53c1479c4364}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{0dfe2c5d-8315-4beb-a437-53c1479c4364}.xml index 32c3321..22155b3 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{0dfe2c5d-8315-4beb-a437-53c1479c4364}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{0dfe2c5d-8315-4beb-a437-53c1479c4364}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10023 {0dfe2c5d-8315-4beb-a437-53c1479c4364} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{109a79d2-dbcb-4351-8b1d-35960f35d86f}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{109a79d2-dbcb-4351-8b1d-35960f35d86f}.xml index 440667c..8d02ffb 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{109a79d2-dbcb-4351-8b1d-35960f35d86f}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{109a79d2-dbcb-4351-8b1d-35960f35d86f}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10023 {109a79d2-dbcb-4351-8b1d-35960f35d86f} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{10c9ae5c-ab07-4de8-ba70-33e4522dfae4}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{10c9ae5c-ab07-4de8-ba70-33e4522dfae4}.xml index 1d7bce9..eaae243 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{10c9ae5c-ab07-4de8-ba70-33e4522dfae4}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{10c9ae5c-ab07-4de8-ba70-33e4522dfae4}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10023 {10c9ae5c-ab07-4de8-ba70-33e4522dfae4} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{138aad57-c9c1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{138aad57-c9c1-e611-80c1-00155d5f3d01}.xml index 1ef50a6..3091c34 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{138aad57-c9c1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{138aad57-c9c1-e611-80c1-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10023 {138aad57-c9c1-e611-80c1-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{2e2afb39-b26f-4aff-adef-644bcb559c54}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{2e2afb39-b26f-4aff-adef-644bcb559c54}.xml index 29539de..e52f6f7 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{2e2afb39-b26f-4aff-adef-644bcb559c54}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{2e2afb39-b26f-4aff-adef-644bcb559c54}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10023 {2e2afb39-b26f-4aff-adef-644bcb559c54} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{8c93e404-bacf-4d31-8012-0b7fd3a9504a}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{8c93e404-bacf-4d31-8012-0b7fd3a9504a}.xml index 0e5ef51..b30b76a 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{8c93e404-bacf-4d31-8012-0b7fd3a9504a}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{8c93e404-bacf-4d31-8012-0b7fd3a9504a}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10023 {8c93e404-bacf-4d31-8012-0b7fd3a9504a} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{deec113b-3985-49d2-8638-fe9e1d7fd974}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{deec113b-3985-49d2-8638-fe9e1d7fd974}.xml index 4924d05..5d30a68 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{deec113b-3985-49d2-8638-fe9e1d7fd974}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{deec113b-3985-49d2-8638-fe9e1d7fd974}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10023 {deec113b-3985-49d2-8638-fe9e1d7fd974} - + diff --git a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{e54f01dd-cbc1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{e54f01dd-cbc1-e611-80c1-00155d5f3d01}.xml index ee7b173..5a12c64 100644 --- a/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{e54f01dd-cbc1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessageteam/SavedQueries/{e54f01dd-cbc1-e611-80c1-00155d5f3d01}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10023 {e54f01dd-cbc1-e611-80c1-00155d5f3d01} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/Entity.xml b/crm-solution/Entities/ldv_notificationmessageuser/Entity.xml index 66847e9..b596197 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/Entity.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationmessageuser - 10024 @@ -21,7 +20,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -36,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -52,7 +59,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -67,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -84,7 +99,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -99,6 +116,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -115,6 +138,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -131,6 +155,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -165,6 +195,12 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 100 200 @@ -199,6 +235,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -215,6 +257,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -231,6 +274,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -262,6 +311,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -278,7 +333,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -293,6 +350,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -309,7 +372,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -324,6 +389,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -341,7 +412,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -356,6 +429,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -372,6 +451,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -388,6 +468,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -422,6 +508,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -434,103 +526,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - - - - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -545,6 +549,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single @@ -560,7 +570,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -576,6 +588,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -591,7 +609,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -607,6 +627,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -625,6 +651,7 @@ auto 1 1 + 0 0 1 0 @@ -639,9 +666,15 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 state - 8.1.1.2 + 0.0.1.1 1 @@ -693,9 +726,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 0.0.1.1 1 @@ -746,6 +785,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -779,6 +824,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -800,6 +851,7 @@ 0 0 + 0 0 0 0 @@ -807,6 +859,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -849,19 +903,10 @@ 0 1 0 + 0 - - - 10024 - {13ddcc33-c8c1-e611-80c1-00155d5f3d01} - - - - 0.0.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessageuser/FormXml/mainInteractionCentric/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml b/crm-solution/Entities/ldv_notificationmessageuser/FormXml/main/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml similarity index 94% rename from crm-solution/Entities/ldv_notificationmessageuser/FormXml/mainInteractionCentric/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml rename to crm-solution/Entities/ldv_notificationmessageuser/FormXml/main/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml index 20be36d..ba8afb3 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/FormXml/mainInteractionCentric/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/FormXml/main/{dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f}.xml @@ -3,8 +3,8 @@ {dcf0f71d-3c1e-4568-a14b-07bd8c7e3b9f} 0.0.1.1 - 1 - 1 + 2 + 0
@@ -51,7 +51,7 @@ - + @@ -95,6 +95,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationmessageuser/FormXml/mobile/{1989f23b-0feb-4a3a-98be-c3c64da62714}.xml b/crm-solution/Entities/ldv_notificationmessageuser/FormXml/mobile/{1989f23b-0feb-4a3a-98be-c3c64da62714}.xml deleted file mode 100644 index 4231221..0000000 --- a/crm-solution/Entities/ldv_notificationmessageuser/FormXml/mobile/{1989f23b-0feb-4a3a-98be-c3c64da62714}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {1989f23b-0feb-4a3a-98be-c3c64da62714} - 0.0.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{2b2cc504-4bb5-4ccc-9bde-612ac288d385}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{2b2cc504-4bb5-4ccc-9bde-612ac288d385}.xml index e86702e..2e17153 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{2b2cc504-4bb5-4ccc-9bde-612ac288d385}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{2b2cc504-4bb5-4ccc-9bde-612ac288d385}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10024 {2b2cc504-4bb5-4ccc-9bde-612ac288d385} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{42954915-ccc1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{42954915-ccc1-e611-80c1-00155d5f3d01}.xml index 9799617..b901742 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{42954915-ccc1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{42954915-ccc1-e611-80c1-00155d5f3d01}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10024 {42954915-ccc1-e611-80c1-00155d5f3d01} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{4fc5be8d-78e1-4cf6-9584-3e69023f1ac0}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{4fc5be8d-78e1-4cf6-9584-3e69023f1ac0}.xml index b89351d..7b8bc28 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{4fc5be8d-78e1-4cf6-9584-3e69023f1ac0}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{4fc5be8d-78e1-4cf6-9584-3e69023f1ac0}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10024 {4fc5be8d-78e1-4cf6-9584-3e69023f1ac0} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{63621da5-a754-4cc7-a00e-bb9ab699f062}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{63621da5-a754-4cc7-a00e-bb9ab699f062}.xml index 158be85..7227d83 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{63621da5-a754-4cc7-a00e-bb9ab699f062}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{63621da5-a754-4cc7-a00e-bb9ab699f062}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10024 {63621da5-a754-4cc7-a00e-bb9ab699f062} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8acfa845-c11f-4364-bfe2-ae95445c11b4}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8acfa845-c11f-4364-bfe2-ae95445c11b4}.xml index 1993d28..437a053 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8acfa845-c11f-4364-bfe2-ae95445c11b4}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8acfa845-c11f-4364-bfe2-ae95445c11b4}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10024 {8acfa845-c11f-4364-bfe2-ae95445c11b4} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8bc6d03a-4074-421d-bf12-c7a9df10866e}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8bc6d03a-4074-421d-bf12-c7a9df10866e}.xml index 21b66ad..698cfd4 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8bc6d03a-4074-421d-bf12-c7a9df10866e}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{8bc6d03a-4074-421d-bf12-c7a9df10866e}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10024 {8bc6d03a-4074-421d-bf12-c7a9df10866e} - + diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{92ddcc33-c8c1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{92ddcc33-c8c1-e611-80c1-00155d5f3d01}.xml index 37729c6..9698671 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{92ddcc33-c8c1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{92ddcc33-c8c1-e611-80c1-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10024 {92ddcc33-c8c1-e611-80c1-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{e80f1d56-8a9e-4ee0-a421-1c0e6675f6ce}.xml b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{e80f1d56-8a9e-4ee0-a421-1c0e6675f6ce}.xml index 5e7eb1c..73c9839 100644 --- a/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{e80f1d56-8a9e-4ee0-a421-1c0e6675f6ce}.xml +++ b/crm-solution/Entities/ldv_notificationmessageuser/SavedQueries/{e80f1d56-8a9e-4ee0-a421-1c0e6675f6ce}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10024 {e80f1d56-8a9e-4ee0-a421-1c0e6675f6ce} - + diff --git a/crm-solution/Entities/ldv_notificationread/Entity.xml b/crm-solution/Entities/ldv_notificationread/Entity.xml index aeef6a7..8ae6cc6 100644 --- a/crm-solution/Entities/ldv_notificationread/Entity.xml +++ b/crm-solution/Entities/ldv_notificationread/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationread - 10025 @@ -21,7 +20,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -36,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -52,7 +59,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -67,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -84,7 +99,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -99,6 +116,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -115,6 +138,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -131,6 +155,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -165,6 +195,12 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 100 200 @@ -199,6 +235,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -215,6 +257,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -231,6 +274,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -262,6 +311,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -278,7 +333,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -293,6 +350,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -309,7 +372,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -324,6 +389,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -341,7 +412,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -356,6 +429,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -372,6 +451,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -388,6 +468,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -422,6 +508,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -434,103 +526,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.0.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - - - - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -545,6 +549,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single @@ -560,7 +570,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -576,6 +588,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -591,7 +609,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -607,6 +627,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -625,6 +651,7 @@ auto 1 1 + 0 0 1 0 @@ -639,9 +666,15 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 state - 8.1.1.2 + 0.0.1.1 1 @@ -693,9 +726,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 0.0.1.1 1 @@ -746,6 +785,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -779,6 +824,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -800,6 +851,7 @@ 0 0 + 0 0 0 0 @@ -807,6 +859,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -848,19 +902,10 @@ 0 1 0 + 0 - - - 10025 - {afe2e1ad-efc1-e611-80c1-00155d5f3d01} - - - - 0.0.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationread/FormXml/mainInteractionCentric/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml b/crm-solution/Entities/ldv_notificationread/FormXml/main/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml similarity index 94% rename from crm-solution/Entities/ldv_notificationread/FormXml/mainInteractionCentric/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml rename to crm-solution/Entities/ldv_notificationread/FormXml/main/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml index adb047c..63e618c 100644 --- a/crm-solution/Entities/ldv_notificationread/FormXml/mainInteractionCentric/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml +++ b/crm-solution/Entities/ldv_notificationread/FormXml/main/{5bf5fbcd-0446-4a39-a870-d7b88f3d5215}.xml @@ -3,8 +3,8 @@ {5bf5fbcd-0446-4a39-a870-d7b88f3d5215} 0.0.1.1 - 1 - 1 + 2 + 0
@@ -51,7 +51,7 @@ - + @@ -95,6 +95,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationread/FormXml/mobile/{fc2d02c2-98f2-4294-8f11-8b1f6e5fc820}.xml b/crm-solution/Entities/ldv_notificationread/FormXml/mobile/{fc2d02c2-98f2-4294-8f11-8b1f6e5fc820}.xml deleted file mode 100644 index 21861ff..0000000 --- a/crm-solution/Entities/ldv_notificationread/FormXml/mobile/{fc2d02c2-98f2-4294-8f11-8b1f6e5fc820}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {fc2d02c2-98f2-4294-8f11-8b1f6e5fc820} - 0.0.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{05d8f50f-20a5-46fe-ad5d-e15f80f16473}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{05d8f50f-20a5-46fe-ad5d-e15f80f16473}.xml index d64efc7..1b72fe1 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{05d8f50f-20a5-46fe-ad5d-e15f80f16473}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{05d8f50f-20a5-46fe-ad5d-e15f80f16473}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10025 {05d8f50f-20a5-46fe-ad5d-e15f80f16473} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{2ee3e1ad-efc1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{2ee3e1ad-efc1-e611-80c1-00155d5f3d01}.xml index 13b36a6..eb74f22 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{2ee3e1ad-efc1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{2ee3e1ad-efc1-e611-80c1-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10025 {2ee3e1ad-efc1-e611-80c1-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{55a3a401-0d61-4953-b45a-1d0e5bcf24a5}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{55a3a401-0d61-4953-b45a-1d0e5bcf24a5}.xml index 442802b..579f7d1 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{55a3a401-0d61-4953-b45a-1d0e5bcf24a5}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{55a3a401-0d61-4953-b45a-1d0e5bcf24a5}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10025 {55a3a401-0d61-4953-b45a-1d0e5bcf24a5} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{58144b16-f0c1-e611-80c1-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{58144b16-f0c1-e611-80c1-00155d5f3d01}.xml index 651f022..d1fd152 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{58144b16-f0c1-e611-80c1-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{58144b16-f0c1-e611-80c1-00155d5f3d01}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10025 {58144b16-f0c1-e611-80c1-00155d5f3d01} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{63d0f8ea-3eeb-47cc-8b67-454fe8d53ba6}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{63d0f8ea-3eeb-47cc-8b67-454fe8d53ba6}.xml index 1cf7242..2872078 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{63d0f8ea-3eeb-47cc-8b67-454fe8d53ba6}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{63d0f8ea-3eeb-47cc-8b67-454fe8d53ba6}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10025 {63d0f8ea-3eeb-47cc-8b67-454fe8d53ba6} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{aca6a711-ea0e-4f96-a966-0cfbad56abd5}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{aca6a711-ea0e-4f96-a966-0cfbad56abd5}.xml index b24b6aa..4b2bf4f 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{aca6a711-ea0e-4f96-a966-0cfbad56abd5}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{aca6a711-ea0e-4f96-a966-0cfbad56abd5}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10025 {aca6a711-ea0e-4f96-a966-0cfbad56abd5} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{bec11ab5-d684-4405-b23c-9567c4603e9e}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{bec11ab5-d684-4405-b23c-9567c4603e9e}.xml index add4aed..52b2b7e 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{bec11ab5-d684-4405-b23c-9567c4603e9e}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{bec11ab5-d684-4405-b23c-9567c4603e9e}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10025 {bec11ab5-d684-4405-b23c-9567c4603e9e} - + diff --git a/crm-solution/Entities/ldv_notificationread/SavedQueries/{ed1dc419-3001-414b-82b2-776d96164d95}.xml b/crm-solution/Entities/ldv_notificationread/SavedQueries/{ed1dc419-3001-414b-82b2-776d96164d95}.xml index bbce22d..8f4f7e4 100644 --- a/crm-solution/Entities/ldv_notificationread/SavedQueries/{ed1dc419-3001-414b-82b2-776d96164d95}.xml +++ b/crm-solution/Entities/ldv_notificationread/SavedQueries/{ed1dc419-3001-414b-82b2-776d96164d95}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10025 {ed1dc419-3001-414b-82b2-776d96164d95} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/Entity.xml b/crm-solution/Entities/ldv_notificationscentreconfig/Entity.xml index cdaaf6a..731bad1 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/Entity.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/Entity.xml @@ -1,7 +1,6 @@  ldv_notificationscentreconfig - 10028 @@ -21,7 +20,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -36,6 +37,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -52,7 +59,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -67,6 +76,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -84,7 +99,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -99,6 +116,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -115,6 +138,7 @@ none ValidForAdvancedFind disabled + 0 1 1 0 @@ -131,6 +155,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -2147483648 2147483647 @@ -165,6 +195,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 99 @@ -199,6 +235,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 10 5000 @@ -233,10 +275,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 0.1.1.1 1 @@ -288,10 +336,16 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 0 bit - 8.1.1.2 + 0.1.1.1 1 @@ -343,6 +397,12 @@ 0 1 1 + 0 + + 1 + 0 + 1 + 0 text 400 800 @@ -360,6 +420,7 @@ systemrequired ValidForAdvancedFind|RequiredForGrid auto + 0 1 1 0 @@ -376,6 +437,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 @@ -407,14 +474,20 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 - 0 + 1 2147483647 - + @@ -441,6 +514,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 1 2147483647 @@ -448,7 +527,7 @@ - + @@ -458,7 +537,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -473,6 +554,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -489,7 +576,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid inactive + 0 1 + 0 0 0 0 @@ -504,6 +593,12 @@ 0 1 1 + 0 + + 0 + 1 + 1 + 0 datetime 0 1 @@ -521,7 +616,9 @@ none ValidForAdvancedFind|ValidForForm|ValidForGrid auto + 0 1 + 0 0 0 0 @@ -536,6 +633,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -552,6 +655,7 @@ none ValidForAdvancedFind|ValidForGrid inactive + 0 1 1 0 @@ -568,6 +672,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 date 0 1 @@ -602,6 +712,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single 8 @@ -614,103 +730,15 @@ - - nvarchar - owneridname - owneridname - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.1.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - - - - - - int - owneridtype - owneridtype - systemrequired - ObjectTypeCode - disabled - 1 - 1 - 1 - 0 - 1 - 0 - 0.1.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - - -2147483648 - 2147483647 - - - - - - nvarchar - owneridyominame - owneridyominame - systemrequired - auto - 1 - 0 - 0 - 1 - 0 - 0.1.1.1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 1 - 1 - text - 100 - 320 - OwnerIdName - - - - lookup owningbusinessunit owningbusinessunit none auto + 0 1 + 0 0 0 0 @@ -725,6 +753,12 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 single @@ -740,7 +774,9 @@ owningteam none auto + 0 1 + 0 0 0 1 @@ -756,6 +792,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -771,7 +813,9 @@ owninguser none auto + 0 1 + 0 0 0 1 @@ -787,6 +831,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 single @@ -805,6 +855,7 @@ auto 1 1 + 0 0 1 0 @@ -819,9 +870,15 @@ 0 1 1 + 0 + + 0 + 1 + 0 + 0 state - 8.1.1.2 + 0.1.1.1 1 @@ -873,9 +930,15 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 status - 8.1.1.2 + 0.1.1.1 1 @@ -926,6 +989,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -959,6 +1028,12 @@ 0 1 1 + 0 + + 0 + 0 + 0 + 0 -1 2147483647 @@ -980,6 +1055,7 @@ 0 0 + 0 0 0 0 @@ -987,6 +1063,8 @@ 0 UserOwned 0 + 0 + 0 0 0 @@ -1031,19 +1109,10 @@ 0 1 0 + 0 - - - 10028 - {e8e6b181-7fca-e611-80c2-00155d5f3d01} - - - - 0.1.1.1 - - \ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mainInteractionCentric/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml similarity index 94% rename from crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mainInteractionCentric/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml rename to crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml index 019d070..a7ce8d7 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mainInteractionCentric/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{8772740a-9fe0-4d6e-97ba-493c062dd149}.xml @@ -3,8 +3,8 @@ {8772740a-9fe0-4d6e-97ba-493c062dd149} 0.1.1.1 - 1 - 1 + 2 + 0
@@ -51,7 +51,7 @@ - + @@ -95,6 +95,7 @@ + 1 1 diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{b32dac27-520e-43b1-957c-1930a5567854}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{b32dac27-520e-43b1-957c-1930a5567854}.xml index cba0cbc..e847140 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{b32dac27-520e-43b1-957c-1930a5567854}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/main/{b32dac27-520e-43b1-957c-1930a5567854}.xml @@ -154,7 +154,7 @@ - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mobile/{912396a4-801d-45c8-a3ca-1bcd1aa6bc86}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mobile/{912396a4-801d-45c8-a3ca-1bcd1aa6bc86}.xml deleted file mode 100644 index 88cf6b3..0000000 --- a/crm-solution/Entities/ldv_notificationscentreconfig/FormXml/mobile/{912396a4-801d-45c8-a3ca-1bcd1aa6bc86}.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - {912396a4-801d-45c8-a3ca-1bcd1aa6bc86} - 0.1.1.1 - 0 - 1 -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- 1 - 1 - - - - - - -
-
\ No newline at end of file diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{00e1ea8a-7fca-e611-80c2-00155d5f3d01}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{00e1ea8a-7fca-e611-80c2-00155d5f3d01}.xml index 6adf6ba..5dc03f4 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{00e1ea8a-7fca-e611-80c2-00155d5f3d01}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{00e1ea8a-7fca-e611-80c2-00155d5f3d01}.xml @@ -6,7 +6,6 @@ 0 0 1 - 10028 {00e1ea8a-7fca-e611-80c2-00155d5f3d01} 8192 diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{0a9875e6-e2d6-49cd-92f8-ab7bc8f4a3a9}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{0a9875e6-e2d6-49cd-92f8-ab7bc8f4a3a9}.xml index 809f0a6..4066971 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{0a9875e6-e2d6-49cd-92f8-ab7bc8f4a3a9}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{0a9875e6-e2d6-49cd-92f8-ab7bc8f4a3a9}.xml @@ -6,10 +6,9 @@ 1 0 1 - 10028 {0a9875e6-e2d6-49cd-92f8-ab7bc8f4a3a9} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4adf12d3-d885-4016-a9c1-3dd82e284177}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4adf12d3-d885-4016-a9c1-3dd82e284177}.xml index 0ffdbe4..0919678 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4adf12d3-d885-4016-a9c1-3dd82e284177}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4adf12d3-d885-4016-a9c1-3dd82e284177}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10028 {4adf12d3-d885-4016-a9c1-3dd82e284177} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4b71cf36-a7c5-4dad-835a-3aa532364732}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4b71cf36-a7c5-4dad-835a-3aa532364732}.xml index 7be419e..dd81947 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4b71cf36-a7c5-4dad-835a-3aa532364732}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{4b71cf36-a7c5-4dad-835a-3aa532364732}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10028 {4b71cf36-a7c5-4dad-835a-3aa532364732} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{5859f9d5-568e-43d2-aa04-08e8437d0d21}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{5859f9d5-568e-43d2-aa04-08e8437d0d21}.xml index 616c133..aebd91c 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{5859f9d5-568e-43d2-aa04-08e8437d0d21}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{5859f9d5-568e-43d2-aa04-08e8437d0d21}.xml @@ -6,10 +6,9 @@ 0 0 0 - 10028 {5859f9d5-568e-43d2-aa04-08e8437d0d21} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{85aaf31f-6c32-4f8a-8374-98344b9e2c8a}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{85aaf31f-6c32-4f8a-8374-98344b9e2c8a}.xml index 583552b..0da81bd 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{85aaf31f-6c32-4f8a-8374-98344b9e2c8a}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{85aaf31f-6c32-4f8a-8374-98344b9e2c8a}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10028 {85aaf31f-6c32-4f8a-8374-98344b9e2c8a} - + diff --git a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{f7964ee0-4c37-4713-9f54-f3eea6964f23}.xml b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{f7964ee0-4c37-4713-9f54-f3eea6964f23}.xml index 388a710..9ddb8c3 100644 --- a/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{f7964ee0-4c37-4713-9f54-f3eea6964f23}.xml +++ b/crm-solution/Entities/ldv_notificationscentreconfig/SavedQueries/{f7964ee0-4c37-4713-9f54-f3eea6964f23}.xml @@ -6,10 +6,9 @@ 0 0 1 - 10028 {f7964ee0-4c37-4713-9f54-f3eea6964f23} - + diff --git a/crm-solution/Other/Customizations.xml b/crm-solution/Other/Customizations.xml index de14239..06f9c3c 100644 --- a/crm-solution/Other/Customizations.xml +++ b/crm-solution/Other/Customizations.xml @@ -5,12 +5,16 @@ + + + + 1033 diff --git a/crm-solution/Other/EntityMaps.xml b/crm-solution/Other/EntityMaps.xml deleted file mode 100644 index dbafe4d..0000000 --- a/crm-solution/Other/EntityMaps.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - ldv_notificationmessage - ldv_notificationmessagerole - - - - ldv_notificationmessage - ldv_notificationmessageteam - - - - ldv_notificationmessage - ldv_notificationmessageuser - - - - ldv_notificationmessage - ldv_notificationread - - - - role - ldv_notificationmessage - - - - role - ldv_notificationmessagerole - - - - systemuser - ldv_notificationmessage - - - - systemuser - ldv_notificationmessageuser - - - - systemuser - ldv_notificationread - - - - team - ldv_notificationmessage - - - - team - ldv_notificationmessageteam - - - \ No newline at end of file diff --git a/crm-solution/Other/Relationships.xml b/crm-solution/Other/Relationships.xml index a201db7..3b7d484 100644 --- a/crm-solution/Other/Relationships.xml +++ b/crm-solution/Other/Relationships.xml @@ -54,6 +54,7 @@ + @@ -63,6 +64,7 @@ + diff --git a/crm-solution/Other/Relationships/Account.xml b/crm-solution/Other/Relationships/Account.xml index fcdbd58..1c67328 100644 --- a/crm-solution/Other/Relationships/Account.xml +++ b/crm-solution/Other/Relationships/Account.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Account @@ -12,6 +12,7 @@ Cascade Cascade Cascade + NoCascade RegardingObjectId diff --git a/crm-solution/Other/Relationships/ActivityPointer.xml b/crm-solution/Other/Relationships/ActivityPointer.xml index 6300a35..b054038 100644 --- a/crm-solution/Other/Relationships/ActivityPointer.xml +++ b/crm-solution/Other/Relationships/ActivityPointer.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage ActivityPointer diff --git a/crm-solution/Other/Relationships/BookableResourceBooking.xml b/crm-solution/Other/Relationships/BookableResourceBooking.xml index bb93473..cee4d14 100644 --- a/crm-solution/Other/Relationships/BookableResourceBooking.xml +++ b/crm-solution/Other/Relationships/BookableResourceBooking.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage BookableResourceBooking diff --git a/crm-solution/Other/Relationships/BookableResourceBookingHeader.xml b/crm-solution/Other/Relationships/BookableResourceBookingHeader.xml index 416c448..382d7c4 100644 --- a/crm-solution/Other/Relationships/BookableResourceBookingHeader.xml +++ b/crm-solution/Other/Relationships/BookableResourceBookingHeader.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage BookableResourceBookingHeader diff --git a/crm-solution/Other/Relationships/BulkOperation.xml b/crm-solution/Other/Relationships/BulkOperation.xml index ca8d2f9..32627a9 100644 --- a/crm-solution/Other/Relationships/BulkOperation.xml +++ b/crm-solution/Other/Relationships/BulkOperation.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage BulkOperation diff --git a/crm-solution/Other/Relationships/BusinessUnit.xml b/crm-solution/Other/Relationships/BusinessUnit.xml index 16bfa99..4ca5399 100644 --- a/crm-solution/Other/Relationships/BusinessUnit.xml +++ b/crm-solution/Other/Relationships/BusinessUnit.xml @@ -98,7 +98,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage BusinessUnit @@ -107,6 +107,7 @@ NoCascade NoCascade NoCascade + NoCascade OwningBusinessUnit diff --git a/crm-solution/Other/Relationships/Campaign.xml b/crm-solution/Other/Relationships/Campaign.xml index 1457a94..413089c 100644 --- a/crm-solution/Other/Relationships/Campaign.xml +++ b/crm-solution/Other/Relationships/Campaign.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Campaign diff --git a/crm-solution/Other/Relationships/CampaignActivity.xml b/crm-solution/Other/Relationships/CampaignActivity.xml index 39feca6..f9bcd13 100644 --- a/crm-solution/Other/Relationships/CampaignActivity.xml +++ b/crm-solution/Other/Relationships/CampaignActivity.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage CampaignActivity diff --git a/crm-solution/Other/Relationships/Contact.xml b/crm-solution/Other/Relationships/Contact.xml index 7247d61..f8804bf 100644 --- a/crm-solution/Other/Relationships/Contact.xml +++ b/crm-solution/Other/Relationships/Contact.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Contact @@ -12,6 +12,7 @@ Cascade Cascade Cascade + NoCascade RegardingObjectId diff --git a/crm-solution/Other/Relationships/Contract.xml b/crm-solution/Other/Relationships/Contract.xml index 61514b2..4f08d88 100644 --- a/crm-solution/Other/Relationships/Contract.xml +++ b/crm-solution/Other/Relationships/Contract.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Contract diff --git a/crm-solution/Other/Relationships/Entitlement.xml b/crm-solution/Other/Relationships/Entitlement.xml index 900475b..b613c3f 100644 --- a/crm-solution/Other/Relationships/Entitlement.xml +++ b/crm-solution/Other/Relationships/Entitlement.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Entitlement diff --git a/crm-solution/Other/Relationships/EntitlementTemplate.xml b/crm-solution/Other/Relationships/EntitlementTemplate.xml index 598e3e8..921c58d 100644 --- a/crm-solution/Other/Relationships/EntitlementTemplate.xml +++ b/crm-solution/Other/Relationships/EntitlementTemplate.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage EntitlementTemplate diff --git a/crm-solution/Other/Relationships/Incident.xml b/crm-solution/Other/Relationships/Incident.xml index e59a0aa..9fd4636 100644 --- a/crm-solution/Other/Relationships/Incident.xml +++ b/crm-solution/Other/Relationships/Incident.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Incident diff --git a/crm-solution/Other/Relationships/InteractionForEmail.xml b/crm-solution/Other/Relationships/InteractionForEmail.xml index 1f648ec..90214b1 100644 --- a/crm-solution/Other/Relationships/InteractionForEmail.xml +++ b/crm-solution/Other/Relationships/InteractionForEmail.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage InteractionForEmail diff --git a/crm-solution/Other/Relationships/Invoice.xml b/crm-solution/Other/Relationships/Invoice.xml index 0cce221..ae0e502 100644 --- a/crm-solution/Other/Relationships/Invoice.xml +++ b/crm-solution/Other/Relationships/Invoice.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Invoice diff --git a/crm-solution/Other/Relationships/KnowledgeArticle.xml b/crm-solution/Other/Relationships/KnowledgeArticle.xml index ff3b444..6b81149 100644 --- a/crm-solution/Other/Relationships/KnowledgeArticle.xml +++ b/crm-solution/Other/Relationships/KnowledgeArticle.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage KnowledgeArticle @@ -12,6 +12,7 @@ Cascade Cascade Cascade + NoCascade RegardingObjectId diff --git a/crm-solution/Other/Relationships/KnowledgeBaseRecord.xml b/crm-solution/Other/Relationships/KnowledgeBaseRecord.xml index 6e53b89..917747c 100644 --- a/crm-solution/Other/Relationships/KnowledgeBaseRecord.xml +++ b/crm-solution/Other/Relationships/KnowledgeBaseRecord.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage KnowledgeBaseRecord @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade RegardingObjectId diff --git a/crm-solution/Other/Relationships/Lead.xml b/crm-solution/Other/Relationships/Lead.xml index 252f68a..045ee7b 100644 --- a/crm-solution/Other/Relationships/Lead.xml +++ b/crm-solution/Other/Relationships/Lead.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Lead diff --git a/crm-solution/Other/Relationships/Mailbox.xml b/crm-solution/Other/Relationships/Mailbox.xml index a487f55..305a61a 100644 --- a/crm-solution/Other/Relationships/Mailbox.xml +++ b/crm-solution/Other/Relationships/Mailbox.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Mailbox @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade SenderMailboxId diff --git a/crm-solution/Other/Relationships/Opportunity.xml b/crm-solution/Other/Relationships/Opportunity.xml index 3a9e700..fe83943 100644 --- a/crm-solution/Other/Relationships/Opportunity.xml +++ b/crm-solution/Other/Relationships/Opportunity.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Opportunity diff --git a/crm-solution/Other/Relationships/Owner.xml b/crm-solution/Other/Relationships/Owner.xml index d151a94..82d521e 100644 --- a/crm-solution/Other/Relationships/Owner.xml +++ b/crm-solution/Other/Relationships/Owner.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Owner @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade OwnerId diff --git a/crm-solution/Other/Relationships/Quote.xml b/crm-solution/Other/Relationships/Quote.xml index cdc1c43..a4a1520 100644 --- a/crm-solution/Other/Relationships/Quote.xml +++ b/crm-solution/Other/Relationships/Quote.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Quote diff --git a/crm-solution/Other/Relationships/SLA.xml b/crm-solution/Other/Relationships/SLA.xml index 251b6cf..2df010a 100644 --- a/crm-solution/Other/Relationships/SLA.xml +++ b/crm-solution/Other/Relationships/SLA.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SLA @@ -36,7 +36,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SLA diff --git a/crm-solution/Other/Relationships/SalesOrder.xml b/crm-solution/Other/Relationships/SalesOrder.xml index a86ecae..4f40a4b 100644 --- a/crm-solution/Other/Relationships/SalesOrder.xml +++ b/crm-solution/Other/Relationships/SalesOrder.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SalesOrder diff --git a/crm-solution/Other/Relationships/Service.xml b/crm-solution/Other/Relationships/Service.xml index ec96bdd..04eecc5 100644 --- a/crm-solution/Other/Relationships/Service.xml +++ b/crm-solution/Other/Relationships/Service.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Service @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade ServiceId diff --git a/crm-solution/Other/Relationships/Site.xml b/crm-solution/Other/Relationships/Site.xml new file mode 100644 index 0000000..59ad471 --- /dev/null +++ b/crm-solution/Other/Relationships/Site.xml @@ -0,0 +1,22 @@ + + + + OneToMany + 1 + 3.1.1.1 + 0 + ldv_notificationmessage + Site + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + RegardingObjectId + + + + + + + \ No newline at end of file diff --git a/crm-solution/Other/Relationships/SystemUser.xml b/crm-solution/Other/Relationships/SystemUser.xml index 8ca45f0..d01413b 100644 --- a/crm-solution/Other/Relationships/SystemUser.xml +++ b/crm-solution/Other/Relationships/SystemUser.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SystemUser @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade CreatedBy @@ -22,7 +23,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SystemUser @@ -31,6 +32,7 @@ NoCascade NoCascade NoCascade + NoCascade ModifiedBy @@ -41,7 +43,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage SystemUser @@ -50,6 +52,7 @@ NoCascade NoCascade NoCascade + NoCascade OwningUser diff --git a/crm-solution/Other/Relationships/Team.xml b/crm-solution/Other/Relationships/Team.xml index 481e67b..5f128f8 100644 --- a/crm-solution/Other/Relationships/Team.xml +++ b/crm-solution/Other/Relationships/Team.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage Team @@ -12,6 +12,7 @@ NoCascade NoCascade NoCascade + NoCascade OwningTeam diff --git a/crm-solution/Other/Relationships/ldv_roleconfiguration.xml b/crm-solution/Other/Relationships/ldv_roleconfiguration.xml index ad24a3c..f583275 100644 --- a/crm-solution/Other/Relationships/ldv_roleconfiguration.xml +++ b/crm-solution/Other/Relationships/ldv_roleconfiguration.xml @@ -3,7 +3,7 @@ OneToMany 1 - 1.0.0.0 + 3.1.1.1 0 ldv_notificationmessage ldv_roleconfiguration diff --git a/crm-solution/Other/Relationships/msdyn_PostAlbum.xml b/crm-solution/Other/Relationships/msdyn_PostAlbum.xml index eccaa38..7f2e5a0 100644 --- a/crm-solution/Other/Relationships/msdyn_PostAlbum.xml +++ b/crm-solution/Other/Relationships/msdyn_PostAlbum.xml @@ -3,7 +3,7 @@ OneToMany 1 - 8.1.1.2 + 3.1.1.1 0 ldv_notificationmessage msdyn_PostAlbum diff --git a/crm-solution/Other/Relationships/msdyn_playbookinstance.xml b/crm-solution/Other/Relationships/msdyn_playbookinstance.xml new file mode 100644 index 0000000..9c1d89e --- /dev/null +++ b/crm-solution/Other/Relationships/msdyn_playbookinstance.xml @@ -0,0 +1,22 @@ + + + + OneToMany + 1 + 3.1.1.1 + 0 + ldv_notificationmessage + msdyn_playbookinstance + Cascade + Cascade + Cascade + Cascade + Cascade + RegardingObjectId + + + + + + + \ No newline at end of file diff --git a/crm-solution/Other/RibbonCustomization.xml b/crm-solution/Other/RibbonCustomization.xml new file mode 100644 index 0000000..9121281 --- /dev/null +++ b/crm-solution/Other/RibbonCustomization.xml @@ -0,0 +1,68 @@ + + + + + +