Reroute the 'New' button for change requests in DPR WorkspaceSummary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } This is a walkthrough for rerouting the 'New' button for change requests in Digital Product Release Workspace. Currently, in version DPR Workspace 2.4.0, the pagination for change requests does not work. Some customers might want this to be rerouted to the actual Change Request selection page. Please keep in mind that this change will not maintain the relationships/associations between the Release and the Change Request. This will have to be done manually.Additionally, the pagination will be fixed in future releases. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Digital Product Release Workspace 2.4.0. Instructions<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Go to the following URL to open the 'Change Request SNC' for the Workspace in UI Builder:'now/builder/ui/edit/experience/fe72c9ef43012110509fb18afab8f2b6/8e28d7af53543110a147ddeeff7b120b/3d2857af53543110a147ddeeff7b12c6/params/is-headless-viewport/true/parent-screen-id/44c7e2a743e2211092fef6be5bb8f288/parent-element-id/viewport_vyr'Ensure you are in the correct scope and then perform the following changes:1. Add Client State Parameter:- Name = changeManagementURL- Type = String- Initial value = **leave this empty**2. Add Client Script- Script Name = initial setup- Insert the script: function handler({ api, event, helpers, imports }) { helpers.timing.setTimeout(function() { const currentURL = this.window.location.href; let changeManagementURL = currentURL.substring(0, currentURL.indexOf("/now")) + "/now/nav/ui/classic/params/target/sn_chg_model_ui_landing.do"; api.setState("changeManagementURL", changeManagementURL); }); } 3. Link the parameter to the event- Under Content, choose Body- Click Events tab under Page configuration on the right- Click and open 'Link to destination' under DPR Handle New Change - There's a drop-down that has 'Script' selected. Change it to 'Form'- Select External URL- Hover over the blank field underneath 'External URL' and you'll see two small icons appear in the top right corner.- Choose 'Bind Data'- Select Client states- Select changeManagementURL- Click the up arrow that appears on it's right side- Click Apply- Click Apply4. Ensure the client script is loaded and available when the page loads- Under Events look for Page ready- Click 'Add Handler'- Search for 'initial setup'- Select it, scroll down and click Continue- Click Add5. Save all the changes6. Test the button