hpqc sending mail to next responsible tester
Question ID: 104784
0
0

Hi Seniors,

I am working on hpqc workflow script, when status of the TEST SET modified,
send email to second responsible person who is responsible for executing TEST SET 2.
once the TEST SET 2 status changed send email notification to 3rd responsible person and so on.
Any one have implemented code like this? if you have can you please share with me?

Regards,
Mo

Marked as spam
Posted by (Questions: 1, Answers: 0)
Asked on January 4, 2013 9:58 am
49 views
Answers (1)
0
Private answer

Hello SHINELOG,
I dont have any code that is specific to your needs but I do have sample code for sending email. You will also need to make use of the OTA reference guide.

Sub SendDefect (iObjectId, strTo, strCc, strSubject, strComment)
On Error Resume Next
Dim objBugFactory, objBug

Set objBugFactory = TDConnection.BugFactory
Set objBug = objBugFactory.Item(iObjectId)

objBug.Mail strTo, strCc, 2, strSubject, strComment

Set objBug = Nothing
Set objBugFactory = Nothing

PrintError ''SendDefect''
On Error GoTo 0
End Sub

Marked as spam
Posted by (Questions: 1, Answers: 69)
Answered on February 12, 2013 1:54 pm
EyeOnTesting

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

X
Scroll to Top