Resolved! Issue in adding the number of hours to the current date & time in uers's timezone
Hi All, I want to update the field 'Planned End Date' with 'current DateTime + 4 hrs'. For this, I have used the below code: var date = gs.nowDateTime(); var end= new GlideDateTime(date); var hours = 60*60*4; end.addSeconds(hours); The issue is ...