Hi,
In requirement module, I created a new user list type field.
I want to do that if the field value changed to other username, then send mail to the new username.
I writed below workflow, but it does not work...
Sub Req_FieldChange(FieldName)
On Error Resume Next
If FieldName= " RQ_USER_12 " then
strEMail=TDConnection.Customization.Users.User(Req_Fields.Field("RQ_USER_12").Value).Email
strEMail, "", 0, "The username of Demand Manager was changed"& _
" for project " & TDConnection.DomainName&"/"&TDConnection.ProjectName
End if
On Error GoTo 0
End Sub
Thanks.
BR,
Derek