I am attempting to decipher how I can enable the "Send by Email button in the defects section of HP ALM 11.0. We have three environments, Production, Certification, and Test/Development. PROD and CERT have this disabled, but it is enabled in Test/DEV. It appears that my company's vendor support did this last year during our upgrade. Thus none of my team knows where to look, and information found on HP's support site is cryptic at best. Any assistance would be greatly appreciated. Thank you.
We discovered the answer to this question. Here it is:
Note: These steps can only be performed by a project admin
Search for and disable the following code in the common script:
If InStr(ActionName, "act-SendbyEmail") > 0 Or _
ActionName = "act_followup" Or _
InStr(ActionName, "act_mail_tests") > 0 Then
MsgBox "This function is currently disabeled."
ActionCanExecute = False
End If
Save the script and exit the Script Editor
This should do the trick. Good luck.