Table of Contents

Search

  1. Preface
  2. Introduction
  3. IDD Concepts
  4. Implementation Process
  5. IDD Configuration Manager
  6. Manual IDD Configuration
  7. IDD Global Properties
  8. Sizing and Platform Requirements
  9. Application Components
  10. IDD Security Configuration
  11. Data Security
  12. Example Role-Based Security Configuration
  13. Data Masking
  14. Siperian BPM Workflow Engine
  15. Locale Codes
  16. Troubleshooting
  17. Glossary

Data Director Implementation Guide

Data Director Implementation Guide

Updating the Global Properties

Updating the Global Properties

To update the global properties you can run the following SQL script against the CMX_SYSTEM schema.
The following SQL script, when applied to CMX_SYSTEM, initializes the global properties using their default values. Update the VALUE field in this script to modify these values.
insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.1', rowid_ds_pref, ' asyncChildLoading', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.2', rowid_ds_pref, 'bulkexportloadsize', '1000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.3', rowid_ds_pref, 'CompositePagerTotalRecords', '5000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.4', rowid_ds_pref, 'convert2DigitYearTo4Digit', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.5', rowid_ds_pref, 'credentialsAutofillDisabled', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.6', rowid_ds_pref, 'CSVColumnSeparator', ',' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, Create_Date, creator, Last_Update_Date, Updated_By, ROWID_DS_PREF, NAME, VALUE) select 'PREF_DET_4', sysdate, 'CMX', sysdate, 'admin', rowid_ds_pref, 'enableCreateBeMenuGrouping', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.7', rowid_ds_pref, 'enableRememberCredentials', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'IDDATT.0', rowid_ds_pref, 'enableTaskAttachments', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___';​ insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.8', rowid_ds_pref, 'expandDropDownListShowFullValue', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.9', rowid_ds_pref, 'exportusingmultithread', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.10', rowid_ds_pref, 'handleUserExitBeforeShowingDialog', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.11', rowid_ds_pref, 'HeaderBgColor', '#000000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.12', rowid_ds_pref, 'hmInactiveRelationshipsAvailable', 'false' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.13', rowid_ds_pref, 'IDD2COCSConverter.prefixCoNames', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.14', rowid_ds_pref, 'lookupCacheUpdatePeriod', '300000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.15', rowid_ds_pref, 'maxCopiedChildrenNumber', '10' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.16', rowid_ds_pref, 'maxCopiedGrandChildrenNumber', '10' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.17', rowid_ds_pref, 'maxImportThreads', '5' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.18', rowid_ds_pref, 'maxParallelPromoteThreads', '1' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.19', rowid_ds_pref, 'maxParallelBvtThreads', '1' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.20', rowid_ds_pref, 'maxSearchResultsExportedRows', '5000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.21', rowid_ds_pref, 'maxXrefSearchReturnCount', '100' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.22', rowid_ds_pref, 'openDashboardAfterTaskClose', 'false' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.23', rowid_ds_pref, 'proactiveMatchResultSort', 'sortbyscorethenaction' from C_REPOS_DS_PREF where name = '__SYSTEM_PREFERENCES_ROOT__'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.24', rowid_ds_pref, 'rememberCredentialsPeriod', '24' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.25', rowid_ds_pref, 'samCacheUpdatePeriod', '600000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.26', rowid_ds_pref, 'search_empty_date', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.27', rowid_ds_pref, 'searchForDuplicatesBeforeTaskDialog', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.28', rowid_ds_pref, 'serverPageSize', '100' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.29', rowid_ds_pref, 'shouldDisableSearchFieldIfDependentFieldAbsence', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.30', rowid_ds_pref, 'showMatchedColumns', '#DBF58C' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.31', rowid_ds_pref, 'subjectAreaCopyDisabled', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.32', rowid_ds_pref, 'table_default_width_key', '20' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.33', rowid_ds_pref, 'threadSchedulerIdleTime', '5000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.34', rowid_ds_pref, 'transactionTimeout', 300 from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.35', rowid_ds_pref, 'updateExistingPeriodByDefault', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.36', rowid_ds_pref, 'writeBOM', 'false' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.37', rowid_ds_pref, 'isFillOnGap', 'false' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.38', rowid_ds_pref, 'maxXrefSearchReturnCount', '1000' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; insert into C_REPOS_DS_PREF_DETAIL (ROWID_DS_PREF_DETAIL, ROWID_DS_PREF, NAME, VALUE) select 'BDDGP.39', rowid_ds_pref, 'deleteMovedRelInExplorerView', 'true' from C_REPOS_DS_PREF where name = '___SYSTEM_PREFERENCES_ROOT___'; commit; /

0 COMMENTS

We’d like to hear from you!