Home > Domino Tips > Developer > Formula > Create a computed Lotus Notes field to list Personal Address Book names
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

FORMULA

Create a computed Lotus Notes field to list Personal Address Book names


Tandy Wine
09.11.2007
Rating: -2.17- (out of 5)


Lotus Notes, Domino, Workplace and WebSphere tips and advice
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


VIEW MEMBER FEEDACK TO THIS TIP

Related resources from SearchDomino.com:
Tip: List group members from UI doc field

Tip: Get all members of Domino Directory group

Learning Center: Domino Directory management tips and tutorials

Crash Course: Lotus Formula language coding primer

Lotus Notes Domino Formula Language Reference Center

I recently needed to compose a computed Lotus Notes field that would list the Lotus Notes Name of every user in a particular group -- called "IT All" -- in my Personal Address Book (also known as the Domino Directory or names.nsf file).

I knew the group contained nested groups and I wanted to include the individuals in those groups as well.

Using several @transform commands and an @while loop, I was able to achieve this. The following Formula language code was the value of a computed, multi-valued text field.

groupname:="IT Programming";
startlist:=@Name([CN];
@DbLookup("":"NoCache";@Subset(@DbName;1):
"names.nsf";"(Groups for DbLookup)";groupname;
"Members")); @If(@IsError(startlist);"not found";@Do(

testlist:= @Transform( startlist ; "x" ;
  @Do(
templist:= @Name([CN];@DbLookup
("":"NoCache";@Subset(@DbName;1):"names.nsf";"
(Groups for DbLookup)";x;"Members"));
@If(@IsError(templist);"";"GroupFound")
));

LoopAgain:=@If(@IsMember("GroupFound";testlist);
"Yes";"No");
@While(
LoopAgain= "Yes";
startlist:=@Transform( startlist ; "x" ;
  @Do(
templist:=@Name([CN];@DbLookup
("":"NoCache";@Subset(@DbName;1):"names.nsf";"
(Groups for DbLookup)";x;"Members"));
 @If(@IsError(templist);x;templist))
  );
testlist:= @Transform( startlist ; "x" ;
  @Do(
templist:= @Name([CN];
@DbLookup("":"NoCache";@Subset(@DbName;1):
"names.nsf";"(Groups for DbLookup)";x;"Members"));
 @If(@IsError(templist);"";"GroupFound")
));
LoopAgain:=@If(@IsMember("GroupFound";
testlist);"Yes";"No")
);
startlist))

MEMBER FEEDBACK TO THIS TIP

This won't work well if you have a very large Personal Address Book. I suggest keeping the Domino Directory on a button that only executes when you click on it (to build/refresh the list). Using this code in a computed Lotus Notes field on the form would hinder application performance if it fired every time you opened a Lotus Notes document that contained it. Avoid keeping @DBLookups in computed Lotus Notes fields on forms.
—Andrew B.

******************************************

I believe this is a simpler form, and it sorts the user names in alphabetical order:

Group := "IT Programming; 
Server := ""; 
Database := "names.nsf"; 
@Sort(@Name([CN] ; 
@ExpandNameList(Server : Database; Group))) 

I can't remember where I found the @ExpandNameList command -- it might have been on SearchDomino or IBM DeveloperWorks. My notes suggest that it's been around for at least two years.
—Ross B.

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Tandy Wine. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


RELATED CONTENT
Lotus Domino Directory
Find a Lotus Notes user within NAB Deny Access groups
Troubleshoot Lotus Notes Out of Office (OOO) agent error messages
Domino Directory management tips and tutorials
How to correct Lotus Notes public key mismatches in four easy steps
How to automatically create a backup copy of your Domino Directory
JavaScript Domino directory name validation
Get all members of Domino Directory Group
"NAB" your Domino directory problems before they spread
Person document lost from the Domino Directory
Adding a sendmail e-mail list to Domino directory

Formula
Formula language button manages Deny Access list searches
Retrieve Lotus Notes names from a nested group using @DBLookup
Show multiple Lotus Notes document fields in a single view column
How to send a document as a link in a Lotus Notes email
How to generate formatted sequence numbers with Formula language
A simpler pagination view for Lotus Notes documents on the Web
A bevy of Notes/Domino development tips
Easily implement attachment fields in a Web form using Formula
Programmatically create a shortcut for Lotus Notes
Universal @Formula for converting list synonyms

Lotus Notes Domino Formula Language
Stop response documents from showing in a Lotus Notes form
Formula language button manages Deny Access list searches
Add a program doc to compact Lotus Notes databases automatically
Top 10 Lotus Notes Domino programming and development tips of 2007
Retrieve Lotus Notes names from a nested group using @DBLookup
Top 5 @DBLookup tips
Show multiple Lotus Notes document fields in a single view column
Lotus Formula language coding primer
How to send a document as a link in a Lotus Notes email
@DBLookup lessons

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.

HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 1999 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts