Formula to get the expanded server name

Hi!I have a simple problem.

There are a form with two fields:

1- PreselectedServer field that is a text field

2- SelectedServer field that is a computed field

What I want is to enter a value in PreselectedField, and when saved, SelectedServer should contain the full server name.

For example if I enter “Server1” in PreselectedServer, then SelectedServer should contain “CN=Server1/O=Org”

Is there any @ formula to compute it?

Thanks

Subject: Formula to get the expanded server name

Pablo,

You chose “All Releases” but don’t you only need to solve this on one? If ND 6, then use the new @ServerName function as in…

PreselectedServer := @Name([CN]; @ServerName);

SelectedServer := @ServerName;

Ken

Subject: RE: Formula to get the expanded server name

Thanks for your answer.Maybe the post was not clear… @ServerName returns the server for the currentDB, but what I need is to manually enter another server name in a Text field, and the the other computed field should contain the expanded version…