Resolved! UI action is not working(the field value is not updated even when the button is pressed)
function onClick() { var gr = new GlideRecord('incident'); gr.addQuery('sys_id',current.sys_id); gr.query(); while(gr.next()) { gr.u_disability_report='true'; gr.update(); } action.setRedirectURL(current); ...
