4.1 Configure the Investigation Toolkit Parameters
This chapter provides information on configuring and customization of the Investigation Toolkit parameters for Special Investigation, ECM Integration L1, and ECM Case Narrative seeded notebooks.
Updating Notebook Parameters Configuration
An admin user can configure the parameters of the Investigation Toolkit
notebooks by updating the values. To update the value, follow these steps:
- Login to Data Studio.
- Navigate to the Investigation Toolkit folder.
- Open the desired notebook.
- Open the notebook and navigate to the Click to Start
Investigation paragraph in ECM Integration L1 and Special
Investigation notebooks or Entity Summary Risk Report
paragraph in the ECM Case Narrative notebook.
- Click on the Visibility icon and select the Code option.
- Navigate to the line
IHub ihub = new Ihub(ds, session, visualQuery);
- Update the value by adding a line just after the above line
with
ihub.config.
followed byvariable_name
and then the value.For example,
ihub.config.DATE_DISPLAY_FORMAT = "MM-dd-yyyy";
- To update another value, add the additional line as above.
For example, with multiple parameter updates as follows:
IHub ihub = new IHub(ds, session, visualQuery); ihub.config.DATE_DISPLAY_FORMAT = "MM-dd-yyyy"; ihub.config.HIGH_RISK_MIN_SCORE_BOUNDARY = 5;