Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status No Plans to Implement
Workspace Domino
Categories Administration
Created by Guest
Created on Aug 6, 2018

Provide database property for number of $Conflict documents the database contains

Number of $Conflict-Documents should be available

  • in database properties window
  • in catalog.nsf
  • as read-only property for database-class, i.e. db.ConflictCount (LotusScript, Java)
  • as document collection in database-class, i.e. db.AllConflicts (LotusScript, Java)

In large databases, often $Conflict-documents exists where nobody takes notice and care about, until user claims about problems.

This property would allow administrators and developers to get an overview, which databases contains $Conflict-Documents.

An enhancement to database-class will allow developers to easy take care about $Conflict-Documents (instead of running a script over all documents in a view and check the isConflict property).

  • Attach files
  • Guest
    Reply
    |
    Aug 24, 2018

    I think the feature to manage conflicts is under develepers responsibility.

    The $Conflict field is one of the ordinary fields in any database. Application developer (or dba) could create View with selection formula:

    SELECT @IsAvailable($Conflict)

    If you need to know count of conflict documents you could switch on Totals option in one of the view columns.

    I think it should be special view (same as ($All) view) in all system databases and Domino templates. Default accessible by Manager and Designer.

    In custom applications developers should create same views by themselfs.