Standard Data Directive Help

I have created a simple Standard Data Directive that emails our engineering group whenever purchasing has approved (UD Field Checkbox) the part. This is working great. I would like to include the name of the person who approved the part in the email, but the user’s name is not in the ttPart table. A condition can use “the user who called the method” so there must be a way to put a name to that person.

You can link Session.UserID with a query on SysUserFile? is that right guys?

to get the name.

2 Likes

You gave me just enough!
Insert > callContextClient > CurrentUserId

In body of email…
Part Approved by: <callContextClient.CurrentUserId/>

3 Likes