-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix calendar * Calendar export config updated * Duplicate Detection Rules Added * Knowledge articles and subject demo added * Crm Portals and Org settings added
- Loading branch information
Showing
14 changed files
with
1,151 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...amigration/Capgemini.Xrm.Datamigration.Examples/DemoScenarios/Calendars/ExportConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"CrmMigrationToolSchemaPaths": [ | ||
"GetAutomatically" | ||
], | ||
"JsonFolderPath": "GetAutomatically", | ||
"PageSize": 500, | ||
"BatchSize": 1000, | ||
"TopCount": 10000, | ||
"OnlyActiveRecords": false, | ||
"OneEntityPerBatch": true, | ||
"FilePrefix": "Calendars", | ||
"SeperateFilesPerEntity": true, | ||
"CrmMigrationToolSchemaFilters": { | ||
"calendar": "<filter type=\"or\"> <condition attribute=\"type\" operator=\"in\"><value>1</value><value>2</value></condition> <condition attribute=\"calendarid\" operator=\"eq\" value=\"49eff0d2-105b-e911-a98f-000d3ab11b7a\"/> </filter> " | ||
}, | ||
"LookupMapping": { | ||
"calendar": { | ||
"businessunitid": [ | ||
"name" | ||
] | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...amigration/Capgemini.Xrm.Datamigration.Examples/DemoScenarios/Calendars/ImportConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"JsonFolderPath": "GetAutomatically", | ||
"IgnoreStatuses": true, | ||
"IgnoreSystemFields": true, | ||
"SaveBatchSize": 50, | ||
"DeactivateAllProcesses": false, | ||
"FilePrefix": "Calendars", | ||
"PassOneReferences": [ | ||
"businessunit", | ||
"uom", | ||
"uomschedule", | ||
"queue" | ||
], | ||
"MigrationConfig": { | ||
"ApplyAliasMapping": true, | ||
"SourceRootBUName": "capgeminitest" | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...migration/Capgemini.Xrm.Datamigration.Examples/DemoScenarios/CrmPortals/ExportConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"CrmMigrationToolSchemaPaths": [ | ||
"GetAutomatically" | ||
], | ||
"JsonFolderPath": "GetAutomatically", | ||
"PageSize": 500, | ||
"BatchSize": 1000, | ||
"TopCount": 10000, | ||
"OnlyActiveRecords": false, | ||
"OneEntityPerBatch": true, | ||
"FilePrefix": "CrmPortals", | ||
"SeperateFilesPerEntity": true, | ||
"CrmMigrationToolSchemaFilters": { | ||
"adx_sitesetting": "<filter> <condition attribute=\"adx_name\" value=\"Authentication/OpenAuth/%\" operator=\"not-like\"/> </filter>" | ||
}, | ||
"LookupMapping": { | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
...migration/Capgemini.Xrm.Datamigration.Examples/DemoScenarios/CrmPortals/ImportConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"JsonFolderPath": "GetAutomatically", | ||
"IgnoreStatuses": true, | ||
"IgnoreSystemFields": true, | ||
"FiledsToIgnore": [ | ||
"createdby", | ||
"createdonbehalfby", | ||
"createdon", | ||
"importsequencenumber", | ||
"modifiedby", | ||
"modifiedonbehalfby", | ||
"modifiedon", | ||
"ownerid", | ||
"owningbusinessunit", | ||
"owningteam", | ||
"owninguser", | ||
"overriddencreatedon", | ||
"timezoneruleversionnumber", | ||
"utcconversiontimezonecode", | ||
"versionnumber", | ||
"transactioncurrencyid", | ||
"organizationid", | ||
"statecode", | ||
"statuscode" | ||
], | ||
"SaveBatchSize": 50, | ||
"DeactivateAllProcesses": true, | ||
"FilePrefix": "CrmPortals", | ||
"PassOneReferences": [ | ||
"businessunit", | ||
"uom", | ||
"uomschedule", | ||
"queue" | ||
], | ||
"MigrationConfig": { | ||
"ApplyAliasMapping": true, | ||
"SourceRootBUName": "capgeminitest" | ||
}, | ||
"EntitiesToSync": [ | ||
"adx_weblink", | ||
"adx_webpage", | ||
"adx_sitesetting" | ||
] | ||
} |
Oops, something went wrong.