@Environment("ENVOfficeLocation")
Its input-translation formula is:
@Environment("ENVOfficeLocation"; OfficeLocation);
OfficeLocation
The first time the user creates a Profile document, the OfficeLocation field is blank, so the user types in the office location. When the document is saved, the contents of the OfficeLocation field are saved in the notes.ini or Notes Preferences file. The next time the user creates a Profile document, the office location is retrieved from the environment variable ENVOfficeLocation, and the user doesn't have to type it in again (unless the office location changes, in which case the user edits the field).
You could also write the input-translation formula using either @SetEnvironment or the ENVIRONMENT keyword, both of which achieve the same result:
@SetEnvironment("ENVOfficeLocation"; OfficeLocation);
OfficeLocation
or
ENVIRONMENT ENVOfficeLocation:= OfficeLocation;
OfficeLocation