Questions tagged [hcl-notes]

63 questions
0
votes
1 answer

How to read and write to the same csv file using lotusscript?

I have a CSV file. I need to read each line from this file, perform certain function and once done, I need to append a value something like "updated" at the end of each line. Can someone help me to achieve this using LotusScript ? I am using "open…
Keertika
  • 59
  • 6
0
votes
2 answers

Problem with getting list of names of attached files in NotesDocument

I am getting sometimes problems with creating a list of names of the attached files in a NotesDocument. The custom message looks as followed: AttachmentDominoDAO - General problem during reading attachment from entry…
Patrick Kwinten
  • 1,988
  • 2
  • 14
  • 26
0
votes
1 answer

Can I read the Status Bar of IBM/HCL Notes using lotusscript?

In order to determine if a typical condition has occurred, that is "Document has been modified or corrupted since signed!" message, which is printed by Notes itself on the Status Bar. So I want to read the status bar coz I already know that which…
0
votes
1 answer

HCL Domino -11 - Java - Apache POI - NoClassDefFoundError error while converting docx to PDF

I have generated docx file through template using Apache POI. I am trying to convert it to PDF file. Below is the code and the libraries. I am using Apache POI 4.1.1. InputStream is = new FileInputStream(new File(filepath)); OutputStream out = new…
Keertika
  • 59
  • 6
0
votes
1 answer

How to show universal id of notes documents in a notes view?

Question is simple that I wanna show Universal Id of each document in a HCL Notes view. I have tried UniversalId and UNID but none of them worked. I mean that column is empty for all documents. I'm referring to the document Id which you can see in…
0
votes
1 answer

@Command/@Function to replicate the menu command Create-Picture option in code

I think the title explains the question but what I am asking is if there is a Function / @Command / LotusScript option to perform the same process as the Create-Picture function in the client?
RoyRumaner
  • 769
  • 1
  • 9
  • 29
0
votes
1 answer

Lotus/ibm/HCL Notes - JVM: Java Virtual Machine failed to Start

When trying to run any Java related code in my Notes Client I get the above error. I also get it in the designer client when creating or accessing any Java Web Services. This is from my log [1460:0002-2960] 06/08/2021 11:32:22 Agent error:…
Nigel61
  • 11
  • 2
0
votes
0 answers

Formula Language: Select all child documents

id itemId correlationId 1 A 2 B A 3 A 4 C B 5 D B 6 E D Hello, I have a Notes database with a similar structure like the table above. This table contains a unique id for each document. It also contains an itemId, which is not…
lucas
  • 55
  • 2
  • 10
0
votes
1 answer

Database context not allowed

We have a cluster with 3 servers with Load Balancer in front (CloudFlare). Things worked well when we had 2 servers (A & B) in the cluster but after we added a 3-rd server (C) we noticed few odd things. One of them is quite important and I do not…
Dmytro Pastovenskyi
  • 5,240
  • 5
  • 37
  • 56
0
votes
2 answers

Domino Access Services POST limited to specific size

Recently, I started working with Domino Access Services. So far, it is working fine: I can use my GET and POST requests. But I noticed a problem: When posting a large string (I assume 100-200kb+), the data field will be empty even if something else…
lucas
  • 55
  • 2
  • 10
0
votes
0 answers

Display an OKCancelList Prompt from an action button in a view

I have a view with an action button that needs to display a Prompt([OkCancelList]) and run an agent based on the selection made. The problem is I can’t get the Prompt to display. In the debugger it hits the line and jumps right to the next line. Can…
RoyRumaner
  • 769
  • 1
  • 9
  • 29
0
votes
1 answer

Storing and retreiving long strings in XPages

I want to work with long strings (size minimum: 100kb) on Xpages. I assume the best method to store a large string is in a data field of the type "Rich Text". Right now I am stuck with the data handing of this string. How can I transfer this string…
lucas
  • 55
  • 2
  • 10
0
votes
1 answer

Lotus Notes 9 - is it possible to hide the preview pane when scrolling between search results in the calendar?

In Lotus Notes 9 is it possible to hide the preview pane when scrolling between search results in the Lotus Notes calendar? I choose Show -> Hide Preview in oder to hide the preview but each time I use the arrows to scroll through the search…
user1358852
0
votes
0 answers

LotusScript - Issue with MS word processing on HCL Domino 11 server

I am trying to create Word object and open existing word file in web based Domino application. I am able to create the word application and open document when I run the same script in Notes client on Domino server. However I am receiving "Type…
0
votes
0 answers

LotusScript agent renders content manually, but when it runs scheduled it does not show table or doclinks in message body

I have an agent in LotusScript that builds a neatly formatted table of document links and descriptions that functions as a monthly reminder digest. When I run it manually (Agent-Run), it sends a perfectly formed message that matches the…