lotus-notes

(Domino Notes)How to move documents from the original NSF to another NSF?

荒凉一梦 提交于 2021-01-07 04:12:34
问题 There are two NSF on the server, and there are many documents in the two NSF. When I divide a case in NSF A to a specific member, is there a way to move the document to NSF B? When dividing a case into a specific member, there is a field in the document to display the name of the member. If it is feasible, how is it achieved? Is it copied or moved? Is it possible to share the method? 回答1: Use the CopyToDatabase method of the Document class. Here's a simplified LotusScript example: Dim

How to include self created Java files in Java agent

只愿长相守 提交于 2020-08-08 07:29:36
问题 In IBM Notes if I create a Java Agent, how do I then include my own created java files: So I created a cxmlCustom package and this I want to include in to the profileResponse. Note that import cxmCustom in the Java agent does not work.. Next to this I use the java class: Statuscode so that I can create an object which has for example these values: Statuscode = 406 Text = Not Acceptable Meaning = more text In the class StatusCodesList in which I create a bunch of statuscode objects and save

Sending email through lotus notes using excel VBA

回眸只為那壹抹淺笑 提交于 2020-08-03 09:54:52
问题 I am new here.. I am trying to find the solution to the following problem: I want to send emails through lotus notes to different recipients by using excel VBA and running a macro. For this, I have an object where I can select multiple recipients to whom I want to send an email and a code to match it with lotus notes accounts. It is actually working in the current worksheet (named Paulo) but I am not able to duplicate it in another worksheet (named Julia) using the exact same column and code.

How to access current logged in user email address in lotus script?

怎甘沉沦 提交于 2020-05-16 22:00:41
问题 I am looking to find the email address of the current notes client user who is logged in programmatically. Is there a way to do it ? I am accessing username with session but I need email address Thanks in advance. 回答1: From the Help database, part of an example for the getMailInfo method: Dim session As New NotesSession Dim db As NotesDatabase Dim mynotesdir As NotesDirectory Set mynotesdir = session.getDirectory("server name") Dim homeserver As Variant homeserver = mynotesdir.GetMailInfo

Lotus notes html email problem

这一生的挚爱 提交于 2020-02-25 09:52:11
问题 I've made an html email but unfortunately, my client uses a lotus 6.5 which renders css and other stuffs poorly. Now I've fixed most of it, except for one problem, it generated a huge spacing in the bottom part. It almost like a when you look at it in Lotus notes but when i put in a border=1 inside the table, it produced a somewhat hollow spacing. Anyone one encountered this? Heres a screenshot: http://i.stack.imgur.com/Nlss8.png For reference, here is what it should look like: http://www

Xpages SSJS Create Administration Process

牧云@^-^@ 提交于 2020-02-07 05:44:05
问题 Has anyone been able to get SSJS CreateAdministrationProcess to work? I have searched for functioning code but was not able to find any. I am trying to create an adminP request in SSJS to set a users password. I can't use the ?changepassword in the url method because we do not allow web users access to the NAB. I am using OAUTH and when I try to hash and update the password directly to the NAB it without an adminp request, it creates problems with the current client session, logging them out

xpages : Filtering a View Data Source using the keys parameter(filter by category name)

半世苍凉 提交于 2020-01-25 16:23:20
问题 I have an XPage linked to one of our databases which displays an history view of documents in this database. This view is categorized in the Notes client. I need to filter this data view by a value selected from a ComboBox, so I have limited the data to a single category by adding a parameter categoryFilter :" filter by category name". The problem is that the display of the filtered view takes a lot of times then it appears to me a time error message. N.B: The history view is very voluminous.

xpages : Filtering a View Data Source using the keys parameter(filter by category name)

拜拜、爱过 提交于 2020-01-25 16:20:35
问题 I have an XPage linked to one of our databases which displays an history view of documents in this database. This view is categorized in the Notes client. I need to filter this data view by a value selected from a ComboBox, so I have limited the data to a single category by adding a parameter categoryFilter :" filter by category name". The problem is that the display of the filtered view takes a lot of times then it appears to me a time error message. N.B: The history view is very voluminous.

Search for a date between given ranges - Lotus

喜你入骨 提交于 2020-01-24 19:55:08
问题 I have been trying to work out what is the best way to search for gather all of the documents in a database that have a certain date. Originally I was trying to use FTsearch or search to move through a document collection, but I changed over to processing a view and associated documents. My first question is what is the easiest way to spin through a set of documents and find if a date stored in the documents is greater than or less than a specified date? So, to continue working I implemented