Is there a way to send an automail if a field value is changed within the Test Plan module?
Question ID: 107216
0
0

Hello. I am wanting an email to be sent to me if there are any changes made to the fields in the Test Plan module. Is there a way to send an automail if a field value is changed within the Test Plan module?

Marked as spam
Posted by (Questions: 239, Answers: 31)
Asked on October 28, 2016 8:27 pm
82 views
Answers (1)
0
Private answer

In ALM, the Automail feature is designed to send emails out to specified users when changes are made to specified defects. You will need to utilize workflow script to perform this functionality. I have created the following workflow script that will notify the specified user when a field value is changed within the Test Plan module. The example below sends an email when the value in the 'Status' field is changed. It can be edited to work with any of the other fields within the Test Plan module.

You will need to enter the script into the 'Test Plan module script' within the 'Script Editor'.
Location of the Script Editor - Go to 'Customize' --> Workflow --> Script Editor --> Expand 'Test Plan module script...

Enter the script below into the 'Sub Test_FieldChange' function...

Sub Test_FieldChange(FieldName)
'On Error Resume Next
Dim strSubject, strDes
Set tdc = TDConnection
If Test_Fields.Field(''TS_STATUS'').IsModified Then
strSubject = ''Test Change Notification'' & '' for the '' & tdc.ProjectName & '' project in the '' & tdc.DomainName & '' domain. ''
strDes = ''The user '' & User.FullName & '' has changed the status of the '' & Test_Fields.Field(''TS_NAME'').Value & '' test to '' & Test_Fields.Field (''TS_STATUS'').Value
tdc.SendMail ''specified_user_email@testmail.com'', '''', strSubject, strDes, NULL,''HTML''
'Set TDConnection = nothing
End If
'On Error GoTo 0
End Sub

Marked as spam
Posted by (Questions: 2, Answers: 300)
Answered on October 28, 2016 8:30 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top