Questions tagged [notesview]

42 questions
0
votes
3 answers

Notes View: How can I show only those documents which are under the user's name in a specific field

I want to show to the users who are accessing the view the documents which are under him or her. For example: If I have a field named "Name". There are 23 documents in the view and of all those documents, but only five of them have my name under…
Ragome
  • 55
  • 2
  • 12
0
votes
2 answers

IBM domino People view column data does not reflect document data

Inn IBM Domino, Document fields of person is created and updated programmatically. The program that creates the document does subsequent updates and the updated fields are not visible in the "People View" of IBM Domino. However, the data in the…
0
votes
1 answer

Getting "The linked document (UNID... cannot be found in the view (UNID ...)" Error Message

I'm getting the error message below: Upon clicking the doclink which was being attached in the e-mail which was generated by me through clicking the send to managers button. I also tried using NotesURL instead of doclink: Call…
0
votes
1 answer

Is it correct to select based on date in a Lotus Notes View?

I have some documents that contain flight information(eg a flight from Paris to London today 22-05-2015). I want to have 2 views: 1 for today and future flights and 1 for the past flights. I could do these selections: SELECT Form="flight" & fdate >=…
mike_x_
  • 1,900
  • 3
  • 35
  • 69
0
votes
1 answer

Lotus Notes: Print/write variant() to freefile() .csv

I just want to ask how to print a variant() --> "tmpArray" to .csv? Because in the code that I have right now, it's only accessing the first value in the array. I want to access all the values in the array and print it in .csv file. Below is my…
0
votes
1 answer

Lotus Notes View Selection: How to show top 10 documents only based on a column value

Just want to ask how to show top 10 documents only based on a column value using view selection? The formula of the view selection is in the code snippet below.. then there are 50 documents in the view. How do I arrange them according to top 10…
0
votes
1 answer

Search documents between two dates in a view with a NotesViewNavigator

I try to get all the documents which has their creation date between two date (start and end). I have a bug with sometimes dates. If the last category is the 15/01/2015, i have when i put start date or/and end date with 15/01/2015 : "object variable…
sissi49
  • 135
  • 1
  • 11
0
votes
2 answers

How var in view works - Xpages

In view, I set var in All Properties to "rowVar". Code for viewColumn. if (!rowVar.getDocument().getItemValue("NAPAKA").isEmpty()) { return "NAPAKA"} else {return rowVar.getColumnValue("STANJE")}; And code for this.rowClasses: if…
Ermo
  • 91
  • 1
  • 7
0
votes
2 answers

Lotus Notes - Document does not shows in view BUT when i do a search it comes up

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…
0
votes
2 answers

Get all top level entry values from NotesView

What is the easiest way to get all top level entry values from a notes view? I have found the property "TopLevelEntryCount" returning the number of alle categories, but I want the values, too. To iterate the view entries and column values need too…
revle87
  • 13
  • 2
  • 6
-2
votes
1 answer

Xpage - Copy document to another document

I have two documents; document1 allows read/write, but document2 is readonly. var document1:NotesView = database.getView("viewDoc1"); var document2:NotesView = database.getView("viewDoc2"); //var…
-2
votes
1 answer

Search View with my custom adapter

i am trying to make a search view with this adapter: public class NotesAdapter extends BaseAdapter implements Filterable { /** * Wrapper para notas. Util para cambiar el fondo de los item seleccionados. */ Paint paint = new Paint(); public static…
1 2
3