Getting the following error when trying to utilize...
# suitescript
n
Getting the following error when trying to utilize this custom portlet: {"type":"error.SuiteScriptModuleLoaderError","name":"MODULE_DOES_NOT_EXIST","message":"Module does not exist: /SuiteScripts/KES/KES_PL_Custom_Screens_Redirect.js","stack":[]}
/**
 
* @NApiVersion 2.x
 
* @NScriptType Portlet
 
*/
define(['N/runtime'],
      
/**
     
* @param {runtime} runtime
     
*/
    
function(runtime) {
        
function render(context) {
            
var portletObj = context.portlet;
            
portletObj.title = runtime.getCurrentScript().getParameter({'name': 'custscript_kes_pl_dbctitle'})||'No Title';
        
}
        
return {
            
render: render
        
};
})