This document has not been formally reviewed for accuracy and is provided "as is" for your convenience.
Summary
hide field in new defect form
Question
Customization on New Defect form. want to hide field in new defect form.
Answer
Enter Tools > Customize > Workflow > Script Editor and in the Defects Module > Bug_New enter the following line:
Sub Bug_New
On Error Resume Next
Bug_Fields.Field("BG_USER_01").IsVisible = false
On Error GoTo 0
End Sub
Sub Bug_New
On Error Resume Next
Bug_Fields.Field("BG_USER_01").IsVisible = false
On Error GoTo 0
End Sub