Products | Versions |
---|---|
Spotfire Automation Services | 7.5 and higher |
The default search expression to find the users in Send Email task of Spotfire Automation Services Job Builder considers expression is:
(&(objectCategory=person)(displayname=*{0}*)(homemdb=*) (!(userAccountControl:1.2.840.113556.1.4.803:=2)))
where {0} is replaced by the text entered by the user, and must not be removed. These expressions are LDAP search filters.
So if user name is not appearing in search results, check in an LDAP browser tool like Softerra LDAP Browser (see related KB article) whether those user names have homeMDB and objectCategory attributes setup and visible because if any of the two attributes are missing for those users then their email addresses would not appear.
If the username does not have a homeMDB attribute, the search expression can be altered like below where users member of either of specific groups are only considered. “|” is used for OR condition between member groups. For example:
(&(objectCategory=person)(displayname=*{0}*)(|(memberOf=CN=Spotfire1,OU=Support,DC=tibco,DC=com)(memberOf=CN=Spotfire2,OU=Distribution Groups,DC=tibco,DC=com)))
If all users present in that company needs to be considered, search expression like below can be used. For example:
(&(objectCategory=person)(displayname=*{0}*)(company=TIBCO))
More examples for creating LDAP search filters are provided in References.
Once the search expression is created, follow below steps in Spotfire Analyst:
Note: When searching user with display name, you can use complete display name of the user present in the external directory ("Mary") or a substring of the beginning letters ("Ma").
In Spotfire Automation Services Job Builder, Email Address list remains empty for Send Email task after Search operation
Doc: Send Email
Doc: Configuring LDAP
KB: 000035346 How to create LDIF File of a directory object for troubleshooting LDAP User Directory and Authentication issues
External: LDAP String Representation of Search Filters Specification
External: LDAP Search Filter Syntax
External: How to write LDAP search filters