ReplicaID Field Value on Catalog.nsf?

Guys,

I am trying to locate documents from the catalog database using the ReplicaID field.

But the ReplicaID field on docs from the catalog are returning a date value instead of the Replica ID number.

Have you ever seen this?

The view on the catalog.nsf has a strange formula, but I am using Lotus Script so I could not use it anyway…

ReplicaID2 := @If((@Text(ReplicaID; “*”) = “00000000:00001601”); “Non-replicatable files”; ReplicaID);

@Text(ReplicaID2; “") 'look that this format "” is not on the help under @Text.

Any idea?

Thanks,

Hugo

Subject: ReplicaID Field Value on Catalog.nsf ?

Dim docHere As notesdocument	Dim CatReplicaID As Variant

Dim m$ 



m$ = "@Text(ReplicaID;""*"")"

CatReplicaID = Evaluate(m$, docCat)

Set docHere = DocExists (CatReplicaID(0), ThisDB)