Customization on New Defect form. (hide field)

  • KM00962845
  • 29-May-2014
  • 29-May-2014

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