Resolved! Using "ignore_filter_on_new=true" will prevent records from being copied
var rec = new GlideRecord("table_name"); rec .initialize(); rec .setValue("field_name", current.getValue("field_name")); action.openGlideRecord(rec ); Until now, I was copying records using the above code.However, fields with "ignore_filter_on_new=tr...
