Hi all,Is there a way to select Replication or Save conflicts in a view? I know that a conflict contains a $Conflict field and a normal document does not. But how can I use that to select (or prevent from selecting) those documents in a view.
Thanks
Margit
Subject: Select Replication or Save Conflicts in a view
Create a view with the View Selection of
SELECT @IsAvailable( $Conflict )
**please Note I am not a developer I have not idea what that means 
But I got a Dev guy to do the view for me…
Subject: RE: Select Replication or Save Conflicts in a view
Nathan is right. That should help you to pull conflict documents to a separate view.
Subject: RE: Select Replication or Save Conflicts in a view
Yes, you can select replication or save conflicts just like you can other documents, for instance by clicking in the margin.If you want to automatically select all replication/save conflicts, you could use a formula agent with the option selected to select matching documents, rather than the default of modifying the documents (comboox in the lower right).
There’s no way to prevent selection of any particular document except by not having it in the view. After all, you don’t know at the time the document is selected what the user plans to do with it. But you can always write the action to ignore inappropriate documents in the selection.
Subject: RE: Select Replication or Save Conflicts in a view
I would just like to add something. The reason why we went for the view was we needed to run this against the whole server. The selection criteria did work but the it took forever.
The view is allot faster.
Subject: RE: Select Replication or Save Conflicts in a view
Thanks to you all. It helped a lot!Margit