Question

I have a Lotus Notes database in which a view shows up empty, BUT when i do a search (using basic notes search functionality), it returns some documents. How can this be possible? Also how to make those documents show up in the view.

I tried updating the Readers field of the documents, but that also didn't worked.

Please help.

Était-ce utile?

La solution

There is very high probability your view shows response documents, but not their parent/main document. Response hierarchy is ignored after FT search, therefore they show up.

Simply, turn off "Show response documents in a hierarchy" in view properties or rewrite selection formula.

Autres conseils

First check if the view is actually empty. You could have documents in the view, but because they don't have fields that match the columns they won't be visible.

Double click on a blank spot where a document should be, or CTRL-A (Select All). Alternatively page down a number of times, as the documents you are finding may be lower down.

I would recommend then to check the Search criteria of the view in question that you are not accidentally pulling in documents that are not meant for that view.

If that doesn't work (which I have never seen to be honest), the full text index search works as follows.

  1. Make a call to the FTI folder with the search term.

  2. Gets a list of documents that match the search.

  3. Discards the documents on that list based on the following.

    • Is the user allowed to view the document?
    • Would the document appear in the view under normal circumstances?
    • Has the document since been deleted?
    • (Forth reason escapes me, will look it up)
  4. It then displays those documents in the view.

So in short, the full text index search will never show documents that cannot already be shown in the view.

Beyond that, a possible corrupted view index. You can run "UPDALL -v" on it to rebuild the indexes.

http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/topic/com.ibm.help.domino.admin85.doc/H_UPDALL_OPTIONS_3277_STEPS.html

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top