Hi,
I can get an email to send when the requisition is dispatched. I do not know how to capture the email address of the person who the RTP is dispatched to, our user names do not always match their email addresses or I would just add the @email.com to the end of the user name. The user table where the email is stored is not available in the method.
Thanks
Melissa
you can look it up using 4GL and assign it to the callContext.Character01 the use that field in your to email
FOR EACH <YourTTtable>, EACH UserFile where UserFile.DcdUserID = YourTTtable.User:
assign CallContextData.Character01 = UserFile.EmaiAddress.
END.
Note I wrote that on the fly without syntax check so it may not be 100% accurate but you get the idea.
3 Likes
Thanks! It worked
Melissa