Personal names in Brazil and Domino Directory

  • 19 Sep, 2013

Here in Brazil we are known by first name. The Domino Directory only lists people using Last Name, First Name.

I know is not a good idea to change Domino Directory but users are very confused to work with Last Name , First Name.

So i change some views (column name) on the Domino Directory  and change the person name order  to First Name Last Name

For reference you can read the article Personal names around the world

People

DisplayPersonName := @Trim(@Implode(@Trim(@Subset(FirstName; 1) : MiddleInitial:@Subset(LastName; 1)); “   “));
DisplayName := @If(DisplayPersonName = “”; @Subset(FullName; 1); @Trim(DisplayPersonName:@Name([Abbreviate];AltFullName)));
@Name([Abbreviate]; DisplayName)

$PeopleGroupsFlat

DisplayPersonName := @Trim(@If(Type = “Person”; @Implode(@Trim(@Subset(FirstName; 1) : MiddleInitial : @Subset(LastName; 1)); “  “); “”):AltFullName);
DisplayName := @If(Type = “Group”; @Subset(ListName; 1); Type=“Server”;ServerName;@If(DisplayPersonName = “”; @Subset(FullName; 1); DisplayPersonName));
@Name([Abbreviate]; DisplayName)

$PeopleGroupsHier

DisplayPersonName := @Trim(@If(Type = “Person”; @Implode(@Trim(@Subset(FirstName; 1) : MiddleInitial: @Subset(LastName; 1)); “  “); “”):@Name([CN];AltFullName));
DisplayName := @If(Type = “Group”; @Subset(ListName; 1); Type=“Server”;ServerName;@If(DisplayPersonName = “”; @Subset(FullName; 1); DisplayPersonName));
@Name([Abbreviate]; DisplayName)

$PeopeGroupsCorpHier

DisplayPersonName := @If(Type = “Person”; @Implode(@Trim(@Subset(FirstName; 1) : MiddleInitial : @Subset(LastName; 1)); “  “); “”);
DisplayName := @If(Type = “Group”; @Subset(ListName; 1);Type=“Server”;Servername; @If(DisplayPersonName = “”; @Subset(FullName; 1); DisplayPersonName));
AltName:=@If(AltFullName!=“”;@True;@False);
@Trim(@If(JobTitle!=“”;JobTitle + “ “;”“)+ (@Name([Abbreviate]; DisplayName)) + @If(AltName=@True;” (“+@Name([Abbreviate];AltFullName)+”)“;”“))

Related Posts

Migrating messages from Domino to Google using IMAP

  • 20 Feb, 2022

It's only for messages. No calendar migration Imapsync command is a tool allowing incremental and recursive imap transfers from one mailbox to another. If you don't understand the previous sentence,

Migrating messages from Domino to Google using IMAPRead More

Domino V12 and Verse 2.1 How to add a Photo URL

  • 08 Jun, 2021

Today i setup a Domino V12 server just for test some new features. A customer ask to use photos on Verse hosting photos on Domino. Domino V12 comes with Verse 2.0. I just download the version 2.1 of

Domino V12 and Verse 2.1 How to add a Photo URLRead More

Notes / Domino is forever

  • 04 Feb, 2021

Yesterday it seemed like it would be an ordinary working day but a client called me informing about the expiration of a certifier. It would be normal to resolve the problem with the re-certification p

Notes / Domino is foreverRead More