How do I script out everything and just get the name Shrek Lee?
CN=Shrek Lee,OU=Admin,OU=Accounts,DC=dom,DC=mel,DC=com,DC=au
Above info is from the sametime log.
How do I script out everything and just get the name Shrek Lee?
CN=Shrek Lee,OU=Admin,OU=Accounts,DC=dom,DC=mel,DC=com,DC=au
Above info is from the sametime log.
Subject: get full name
Jeremy,
In script, you would use the NotesName class and the CommonUserName property
Dim testname as new NotesName(“CN=Shrek Lee,OU=Admin,OU=Accounts,DC=dom,DC=mel,DC=com,DC=au”)
then the value you require would be test_name.CommonUserName
In @formula, use@Name([CN]
@Name([CN];“CN=Shrek Lee,OU=Admin,OU=Accounts,DC=dom,DC=mel,DC=com,DC=au”)
HTH
Mike