Lotus Software is best known as the creator of Lotus 123 and Lotus Notes. The hugely successful launch of Lotus 123 spreadsheet software in 1983 revolutionized number crunching. The company followed with a SmartSuite of spreadsheet, word processor, presentation software, database manager and personal information organizer. They also have other products such as Lotus Domino and Lotus Notes.
Questions tagged [lotus]
883 questions
2
votes
3 answers
Sending Email from Lotus Notes using Excel and having Attachment & HTML body
Right I'm trying to send an Email form an excel spreadsheet though lotus notes, it has an attachment and the body needs to be in HTML.
I've got some code that from all I've read should allow me to do this however it doesn't.
Without the HTML body…

Anthony
- 61
- 1
- 2
- 7
2
votes
1 answer
Lotus Notes Formula: Button Error Message
I have a problem with this error message appearing when the button is used: "Incorrect data type for operator or @Function: Number Expected"
Everything works fine - it just pops up the error message when "Needs Checking" is selected
Code:
@Command(…

ClaaziX
- 113
- 1
- 8
2
votes
2 answers
Retrieving changes made by a Java Agent on a document
I am passing parameters to a Java agent from Lotus Script like this:
Set db = session.CurrentDatabase
Set doc = db.CreateDocument
Set uiDoc = workspace.CurrentDocument
Call doc.AppendItemValue("fileName", "SomeString" )
Call doc.Save(True,…

AHH
- 981
- 2
- 10
- 26
2
votes
1 answer
Domino designer view
I want in view display records only from 1 form, it's possible to block all other records from other forms and display for example only from "Products" form records ?
Second question is how to hide empty recprds ? I want if all view fields is empty…

Wizard
- 10,985
- 38
- 91
- 165
2
votes
2 answers
How to find all Subfolders of a Folder (View) in Lotus Notes
I am using the Java-API for Lotus Notes/Domino. I need to place Lotus-Documents inside auf Lotus-Folders (Views) which are organised like folders in the file system.
To find and optionaly create a folder I use the following code. The path-String…

christoph.keimel
- 1,240
- 10
- 24
2
votes
4 answers
calculate time to response in lotus notes messages
We are working with Lotus Notes in a Help Desk team and would be useful to know how much time we take to respond a message. Is there some way to achieve this?

Bruno Estrazulas
- 211
- 1
- 3
- 17
2
votes
1 answer
Java Web Services Authentication Lotus Notes
I want to implement very simple java based web service (Provider) in domino... say print "Hello World"
But this has to first authenticate/authorize the user i.e
login
user present in names.nsf
valid password
access in Db etc.
In short we can say…

Afreen
- 51
- 5
2
votes
2 answers
How to hide default footer and display custom footer?
I created a custom theme , I want to hide the default footer for page created with this theme , but when I comment out the code to display footer in theme.html , then it hides footer for all the pages of portal.
What configuration should I do to…

Rao Pranav
- 249
- 1
- 5
- 12
2
votes
1 answer
can anyone please tell how to deal with inline images in lotus notes
Hi guys i am working on sending an email in lotus notes through java.I am able to send an email.For external attachments i am constructing an rich text item.but i am not getting how to deal with inline attachments such as an image inside a mail body…

Mohan
- 221
- 1
- 21
2
votes
1 answer
Lotus Script: Passing a string variable to Evaluate statement
I can't get simple DbLookup formula working with a variable. I have a view with employees and their managers, i get unique managers' records with DbColumn and then i need a list of people managed by this…

Qarlog
- 23
- 1
- 3
2
votes
1 answer
Domino Server Log - JVM Error
10/23/2013 08:15:58 AM HTTP JVM:
10/23/2013 08:15:58 AM HTTP JVM:
10/23/2013 08:15:58 AM HTTP JVM:
2
votes
1 answer
Error when calling oracle stored procedure using LSX
I copied the Sample LC LSX Agent to Call an Oracle Stored Procedure from the following.…
2
votes
2 answers
XPages - parameters for @WarningMessage?
I have a question in relation to @WarningMessage: When I call a script directly from a button on my XPage, it works fine. However, I would like to first call a pop-up dialog from a button (using xe:dialog), call some SSJS from a button on the…
user1358852
2
votes
2 answers
Write contents of InputStream to a RichTextItem and attach to a Notes document in Java
I am able to attach a file to RichTextItem of a domino document that I receive as an InputStream. Below is the code snippet:
attachDocument(InputStream is){
.....
File attFile = saveInputStr(is);
Document attdoc =…
2
votes
1 answer
file upload with special characters in xpages
In Xpages Upload control,I can upload the photo file with special characters. But In the view, some of the special characters change to underscore (eg. {#[ to _ ) , some are not (like space,+). When using the function attachmentObject.getName() , I…