Vulnerability Response > OOB UI Action 'Create Change' ErrorIssue The main issue is with the OOB UI Action Create Change via the Vulnerability Response plugin. The Change Request is created, but the affected CIs are not populated. The following error messages are seen in the logs: "The undefined value has no properties"ReleaseNewYorkCauseThe issue is caused due to the script include ChangeMgmtBaseResolutionIn the script include ChangeMgmtBase we have the following code inside the function "linkChangeRequestandVG": m2mVgChange.previous_cr_state = this.mapCrState(m2mVgChange.change_request.state, m2mVgChange.change_request.close_code.toString()); However, the 'close_code' field is ONLY available if the Change Management Core(ID: com.snc.change_management ) plugin is installed.If the plugin is not installed, the change record won't have that field and the script fails with the error and the 'Affected CIs' are not copied over.To resolve the issue either Install the plugin Change Management Core(ID: com.snc.change_management ) ORChange the line 373 in the script include ChangeMgmtBase as follows, m2mVgChange.previous_cr_state = this.mapCrState(m2mVgChange.change_request.state, ''); An empty string is passed instead of passing the 'close_code' field