PushOnly, PullPull, PushPull, PullOnly ?

June 10, 2008 – 11:25 am

I wanted to have a quick overview on how the servers replicate and if replication is enabled w/o. opening each document.

The easiest way to accomplish  this is to insert a new row into the “Server\Connections” view in the Domino Directory. The view displays values as colors. If replication or schedule is disabled for a connection, the column does not show an icon.

The following formula is used to visualize the replication direction.


_PullPull:=178:178;
_PullPush:=178:179;
_PullOnly:=178;
_PushOnly:=179;
@If(RepTask="0" | Enabled="0";"";
@If ( RepType="0";_PullPull; RepType="1";_PullPush; RepType="2";_PullOnly; RepType="3";_PushOnly;
""))

Related posts:

  1. @Formula Magic
  2. Using MySQL Data in XPages
  3. ‘Merge Replication Conflicts’ does not work as expected in Notes 7.0.3 or 8.0
  4. Want to Change the Look of All Your Views?
  5. Let User Filter Any View

  1. 2 Responses to “PushOnly, PullPull, PushPull, PullOnly ?”

  2. Nice touch!

    By Vitor Pereira on Jun 11, 2008

  3. korrekte Anzeige nur in Clients >R6, in R6 ist da ein kleiner Briefumschlag an den Pfeilen. Aber ansonsten nice!

    By Tobias Girndt on Jun 12, 2008

Sorry, comments for this entry are closed at this time.