Customize the Extend and Renew options on contract to extend it more than the default 3 yearsIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Customize the Extend and Renew options on contract to extend it more than the default 3 years Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Not release specific Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } For example, to extend up to 10 years, you need to add choice - 10 Years for "renewal_options" column in ast_contract.Attached is the screenshot for this (AddContractOptionFor10Years.png).If you are using UI 16 for managing contracts, it is recommend to migrate to Asset workspace or Hardware asset workspace for this.If you migrate to workspace, the above change will suffice the requirement to include 10 years.But if you want to continue using UI16, along with the above mentioned change, there are additional changes that you need to make to UI Pages "contract_extension_popup", and "contract_renewal_popup".https://<instance_name>.service-now.com/sys_ui_page_list.do?sysparm_query=name%3Dcontract_renew_popup%5EORname%3Dcontract_extension_popup&sysparm_first_row=1&sysparm_view=For both "contract_extension_popup" and "contract_renewal_popup", you need to add Option for 10 Years in the HTML section[AddingOptionToHTML.png], and Processing Script[AddingOptionToProcessingScript.png], screenshots attached for the same.These changes need to be done for both the UI Pages. Adding code for your referenceHTML Section<j:if test="${jvar_extension_option == '10 years'}"><option selected="true" value="10"> ${gs.getMessage("10 years")} </option></j:if><j:if test="${jvar_extension_option != '10 years'}"><option value="10"> ${gs.getMessage("10 years")} </option></j:if>Processing Scriptif (extension_option.toString() == "1")optionString = "1 year";if (extension_option.toString() == "2" || extension_option.toString() == "3" || extension_option.toString() == "10")optionString = extension_option + " years";