Replication problem with profile documents

I know you’ve already discussed the replication problem with profile documents. My problem is that I have profile document with computed fields with @dbname as formula. I also have a lot of places and fields in which I use the @getprofilefield formula. When I made replicas profile documents were also replicated and the application didn’t work, because of the wrong values everywhere the @getprofilefield is used. Can anyone suggest how to solve this problem?

Subject: replication problem with profile documents

Don’t store server-specific information in the document :smiley:

Or treat each server as User Profile Document by using

@Command([EDITPROFILEDOCUMENT];“someform”;@ServerName)

Subject: RE: replication problem with profile documents

I just changed the command from @command([editprofile];formname) to @command([editprofiledocument];formname;@servername) and created a replica on another server. So far the documents replicate but the profile documents don’t. Now there are two profile documents, one for each server right? Everything seems ok. I hope there won’t be a problem when I replace the design on the existing replicas. Thanks a lot!