How to change the order from the change models from the "/sn_chg_model_ui_landing.do" pageIssue To change the order, customization is necessary, please check further for more details.ResolutionThe configuration for the order is coming from the following record: - UI Script 'sn_chg_model_ui.landing.app': https://<instance>.service-now.com/sys_ui_script.do?sys_id=c0730abc53d350100999ddeeff7b12c4In the following section of the code: chgModelLandingCtrl.getOrderBy = function() { if (!$scope.selectedSort) return "name"; return $scope.selectedSort; }; See that the sorting is being done through the Name field. Review the above code and make the required changes based on your business requirements.