For Internal Messages you can define fixed recipients, but in addition to that you can with this field add one or more dynamically selected users that should also receive the message
You have two methods of doing this (or combining it):
1. You can use the SQL: syntax
Example: SQL:SELECT USER_CODE FROM OUSR WHERE INTERNAL_K = $[OINV.UserSign] will on an invoice send an internal message to the person who created the Invoice (UserSign)
Tip: You can let your SQL sentence return multiple rows of usernames and then send to each of them
2. You can use Dynamic syntax and Dynamic Syntax Keywords
Example 1: $[Username] will send to currently logged in user
Tip: You can specify more than one recipient by setting semicolons ; beteen them
|