File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ export class DataRaptorMigrationTool extends BaseMigrationTool implements Migrat
207207 } ) ;
208208
209209 mappedObject [ 'Name' ] = this . cleanName ( mappedObject [ 'Name' ] ) ;
210+ mappedObject [ 'IsActive' ] = true ;
210211
211212 // BATCH framework requires that each record has an "attributes" property
212213 mappedObject [ 'attributes' ] = {
Original file line number Diff line number Diff line change @@ -430,6 +430,8 @@ export class OmniScriptMigrationTool extends BaseMigrationTool implements Migrat
430430 }
431431 } ) ;
432432
433+ mappedObject [ 'Name' ] = this . cleanName ( mappedObject [ 'Name' ] ) ;
434+
433435 // BATCH framework requires that each record has an "attributes" property
434436 mappedObject [ 'attributes' ] = {
435437 type : OmniScriptMigrationTool . OMNIPROCESS_NAME ,
@@ -499,7 +501,9 @@ export class OmniScriptMigrationTool extends BaseMigrationTool implements Migrat
499501 propertySet [ 'bundle' ] = this . cleanName ( propertySet [ 'bundle' ] ) ;
500502 break ;
501503 }
504+
502505 mappedObject [ ElementMappings . PropertySet__c ] = JSON . stringify ( propertySet ) ;
506+ mappedObject [ 'Name' ] = this . cleanName ( mappedObject [ 'Name' ] ) ;
503507
504508 // BATCH framework requires that each record has an "attributes" property
505509 mappedObject [ 'attributes' ] = {
You can’t perform that action at this time.
0 commit comments