Why request description appears twice in HR Service Portal in To-do list or HR Tasks?Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms Go to HR service portal, and click on "View All" requests, you will see request description is repeated 2 times on the links. Release Any supported release. Cause Following widget, renders the HR case header menu via below code.HRJ Task Header (https://<Instance Name>.service-now.com/nav_to.do?uri=sp_widget.do?sys_id=5aa9a44f9380320092051d1e867ffb8a) function getDescription(recordInfo) {var util = new hr_PortalUtil();var hrTables = new GlideTableHierarchy(recordInfo.sys_class_name).getTables();if (hrTables.indexOf('sn_hr_core_case') > -1) {var grCase = new GlideRecord(recordInfo.sys_class_name);var caseExists = grCase.get(recordInfo.sys_id);if (caseExists) {util = new hr_PortalUtil(grCase);return util.getCaseTitle();}} Above code invokes below script include method to get the description to display on the menu,hr_PortalUtil(https://<Instance Name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=3c764fda534032003585c3c606dc34e9) getCaseTitle: function() {var title = this._getTitleFromCaseConfiguration(this._gr, this._caseConfigForTicketPage);if (!gs.nil(title))return title;}, In the above code, _getTitleFromCaseConfiguration function refers below configurations,HR Service Based Case Configurationshttps://<Instance Name>.service-now.com/nav_to.do?uri=sn_hr_core_config_case.do?sys_id=c4e9872eb3900300f5302ddc16a8dc91https:/<Instance Name>.service-now.com/nav_to.do?uri=sn_hr_core_config_case.do?sys_id=86d9872eb3900300f5302ddc16a8dc8bThese configurations are set with hr_service,subject_person.name,short_description to display on the portal for menu items.Since the HR service and short description has almost same data, it appears as redundant data on the portal. Resolution Please change above configurations so that you have either, hr_service,subject_person.name ORsubject_person.name,short_description Additional Information Service Portal Script Include