Tagged Questions
0
votes
3answers
49 views
Get members of a group in Lotus Domino
I retrieve names from a group using formula, and put them in a field of type Names this way:
@Name([CN];NAME)
I want to manipulate this data in my code, but using Lotusscript. Can't find it at ...
1
vote
1answer
33 views
Get field names in Formula Language
I'm almost certain there's a way in the Notes Formula language to get the names of items ("fields") on a document, but I can't remember it, and there's no cross-reference from NotesDocument.Items in ...
1
vote
1answer
77 views
Lotus Notes: get parent category name for column formula
In my Lotus Notes database, I have a view that shows some documents, categorized by date. Date field may have several dates in it, so I use @Explode(Date) to show documents in all categories it can be ...
0
votes
6answers
77 views
Display image in notes form from another database
In a traditional notes form, I want to compute an image dynamically. Image is in another database's image resource in the same server.
I have tried using pass thru HTML by computing the URL in ...
0
votes
2answers
92 views
Calling script library in agent and button
I want to use the following script library in button and also in agent.
My script library code:Validate
Option Public
Option Declare
Dim Sess As NotesSession
Dim currentDb As NotesDatabase
Dim ...
0
votes
1answer
138 views
Lotus Notes: Formula: 24 hour Time Format Display
I have a computed field that serves as "reference number" by combining date and time. But, the problem is the time format, it displays AM/PM, I need to make it as military time format or 24hr format. ...
0
votes
3answers
71 views
To handle 12000, agency codes in drop-down in Lotus Notes
I have a field in which I want to show a drop-down which contains almost 12,000 agency codes, I am little worried about the performance of Lotus Client, I have thought of creating a configuration view ...
0
votes
1answer
217 views
Lotus Notes Domino changing computed field value when selecting on dialog list
I have a dialog list which contain "New Request" and "Edit Request", and a computed field which displays the list of available options when either "New Request" and "Edit Request" is selected. I can't ...
0
votes
2answers
340 views
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 ...
0
votes
1answer
252 views
Lotus notes Button Script for Multiple Calendar entry
This is my script. I wanted to have 2 dates and time in this script, so when some one clicks on the button there should be two entries in recipient calendar
i would really appreciate any help on this ...
1
vote
0answers
113 views
@SetViewInfo - Issue when clearing filter
I have a problem that have me stumped.
I have been searching for a solution, but haven't found a working one yet. The solutions I seen introduces other issues.
Here is the scenario:
I have a frameset ...
2
votes
1answer
77 views
Create 'versions' programmatically
Lotus Notes has a 'versioning' feature. You can set this to work in a mode in which the user needs to click File->New->Version to create a new version. I would like to use that functionality in ...
0
votes
3answers
152 views
design email body
here it goes, i have this code
@MailSend(sample1;sample2:sample3; "";"sample, #"+number;
"Good Day! " +@NewLine+ "
Please click the link to see details of the sample for your Reference.. " ...
0
votes
1answer
220 views
@DbLookup in lotusnotes
would somebody help me on this to understand what it is, i am not really getting what it is,
tried a lot but could not arrive at conclusion,
@DbLookup ( "" : "NoCache" ; "" ; "IT-MTBP Info" ; ...
2
votes
1answer
186 views
How do I get the size of my Rich Text Field?
I can get the size of the attachments using @Attachmentlength(), or Using NotesEmbeddedObject Class.
But I am facing a peculiar problem. If I copy and paste a screen shot, or copy and paste an image ...
3
votes
1answer
253 views
Lotus Notes custom view received mail
I am using lotus notes 8.5.2 on windows 7. I would like to create a custom view that shows all emails EXCEPT sent mail. In other words it contains: INBOX & ALL FOLDERS.
Currently my ALL DOCUMENTS ...
2
votes
3answers
275 views
Currency summation in Lotus Notes
We have designed the LN forms with editable fields.User enters the amounts in the editable fields. We are converting the these amounts to currency using 'CCur'. The actual issue is user enters the ...
0
votes
3answers
270 views
If else in lotus notes
How to end if statment in lotus notes.
example.
@If(@Text(textbox1)="";@Failure("Please input your name");@Success);@command([filesave])
1
vote
1answer
151 views
Lotus @command script for Paste Special -> Text
I am looking for a way to create a button to paste plain text. i.e. Edit -> Paste Special -> Text.
I found the function @Command([EditPasteSpecial]) but it only pops up the Paste Special dialog box.
...
0
votes
1answer
538 views
Filtering view in lotus notes
good day,
I'm trying to filter date by year using @setviewinfo. can anyone tell me how?
1
vote
1answer
94 views
no duplication in database lotus note
good day every one.
what are the effect of re-cache if i use it to my updating data?
This is what i trying to do, but i need to know what will happen if i replace the no-cache to re-cache
i will ...
0
votes
2answers
204 views
lotus notes, search data that equal to textbox
I don't understand why my code is not allowed.
@If(@DbLookup("":"nocache";@DbName;"GPA";1)="GPnum";@Failure(@Command([FileSave])&@Command([CloseWindow]));@Success)`
Please help me. Thank you.
1
vote
2answers
135 views
how to call and sort data in a view?
I have two view, one is sorting 2011 data and the other one is sorting the 2012,
2013 is coming and I think, create another view is not good. Then I tried to code a formula to call the data in my ...
1
vote
1answer
239 views
Lotus @command scripts for Reply/Reply All without attachment(s)
I frequently use the "Reply with History without Attachment(s)" and "Reply to All with History without Attachment(s)" in Lotus Notes, and want to create buttons on the toolbar for these. Can anybody ...
0
votes
3answers
333 views
How to get a vaue of a notes text field in formula language?
I have a form on which there is a text field called "Role". Onload of this form i am assigning a value to this field using javascript:
...
0
votes
1answer
886 views
Lotus Notes embedded view from other database using formula?
When creating an embedded view, a popup will appear asking from which database and which view to embed. There's also an option to use @formula to specify the view. Selecting that will present 2 more ...
0
votes
2answers
435 views
Combining Columns in a Lotus Notes View
Is there an equivalent of GROUP BY statement in a Lotus Notes view?
Currently my table is laid out like this:
| JOB # | SHIP DATE 1 | MODULE 1 | SHIP DATE 2 | MODULE 2 |
| 111 | APRIL 2013 | ...
0
votes
1answer
355 views
Order by in Lotus Notes formula
Is is possible to query those documents from a Lotus Domino database which have bigger universal ID than a given number/ID and order them by their universal ID with a Lotus formula query? If yes, how? ...
2
votes
2answers
237 views
Formula referencing parent doc works in computed field, not as default value
Following on from this question: Referencing parent field on document creation I'm using the formula for the default value for a name field.
...
1
vote
4answers
533 views
How do I delete the 32k errored document?
I am having some documents. If I try to open the document then it shows error like "field is too large 32k or view's column & selection formulas are too large"
Whenever I try to delete the ...
0
votes
2answers
148 views
Compare values in the same row in a Lotus Notes view
I want to create a calculated column that returns YES if the four columns beside it are not null and NO if they are all null. An example would be this:
Calculated Column| Column 1 | Column 2 | Column ...
2
votes
3answers
331 views
Hide Empty Column in Lotus Notes View
Is there a way to hide a column in Lotus Notes if the entire column is empty? I've tried using
@ThisValue = ""
in the column properties, but that causes the column to disappear if atleast one ...
1
vote
1answer
182 views
Encrypted emails are giving false form Notes api
I have send an Encrypted email to Lotus notes in-box, If I access that email from my local Its giving true, If the same email is running different system Its giving false.
Is it setting issue?
My code ...
1
vote
2answers
239 views
How do I update the Lotus Notes Document?
For some enhancing reason, I have added some new fields in my form. It is having default value.
But the existing document is not getting updated with the new fields.
I am having a thousands of ...
2
votes
4answers
577 views
Find a Lotus Notes Document based on a field value
I have a field called "JobID" that needs to be unique in the notes database. My plan is to search the database for a document's JobID and ,if it is equal to the current document's JobID, alert the ...
1
vote
1answer
344 views
Notes Formula Language “@ValidateInternetAddress” Failing to Validate Properly?
We are using the following validation code to check for a valid email address formatting on a web form driving by Lotus Notes:
@If((@ValidateInternetAddress([Address821]; @ThisValue)!=""
| ...
1
vote
1answer
280 views
Select only documents with a certain response (Lotus Notes)
In lotus notes, I have documents which can have many types (Forms) of response documents.
I would like to select documents that have a certain response document with them.
For example:
Doc1
...
0
votes
2answers
268 views
Counting the number of documents in a view with Lotus Notes Formula
I have a button in the toolbar that mails selected documents to a mailbox. The Problem is that I have no idea how to make the button formula code run for every selected document. As it stands now it ...
0
votes
2answers
1k views
Lotus Notes SELECT formula using @IsMember and @UserRoles for a view
I have a view in which I want to hide documents (you’ll see later that it’s not really the documents that cause my problem but the categorized view) accessible only by a certain role.
I’ll try to be ...
1
vote
1answer
184 views
@UrlQueryString not forwing for http://www.myserver.com/foo.nsf/&L=EN
I'm creating a custom General Error Message (in domcfg that will replace the standard HTTP404)
I want to get the parameters on the URL, so I use @UrlQueryString.
It works fine expect for URL with the ...
1
vote
3answers
202 views
what are the different parameters based on which @unique in Lotus Notes returns a unique value.?
what are the different parameters based on which @unique in Lotus Notes returns a unique value.
0
votes
2answers
322 views
How to get the sequence number of $Revisions field?
Actually I have to take the sequence number in $Revisions field.
0
votes
2answers
133 views
linking databases in lotus notes
I have a NSF , in that "new request" one action button is there, when am clicking that one, first it is throwing an error like "Master database cannot found please contact "NSF name" administrator" ...
1
vote
4answers
298 views
Perform division of a 22 digit number in lotus script
I want to perform division of a 22 digit no. in lotus script.
Can anyone please tell me how to do it? I am not getting the correct result.
For e.g;
dim num as Double;
dim num1 as Double;
...
1
vote
3answers
638 views
@dbcolumn in session.evaluate in xpages
I am trying to execute this code for a listbox but its not working, this gives me the error 500. If i directly write the @formula in listbox it works fine.
return ...
1
vote
1answer
956 views
*= operator in formula language in lotus notes
Please tell me what is the role of *= operator in below piece of code
@If(@UserRoles *= "[admin]" ; "" ; @Return(""));
It is formula language used in lotus notes databases.
0
votes
2answers
685 views
Type Mismatch When Manipulating Subject Line of An Email (Lotusscript)
I am running a Lotusscript Agent on "Before mail arrives". I need it to grab the text in the subject line after the "#" symbol. No matter how I try to get the Subject field (Evaluate, getFirstItem, ...
1
vote
3answers
547 views
Query Lotus Domino calendar entries independent of date locale
I have Java code which queries calendar entries from a Lotus Notes Domino server (based on a start and end date range). Below is a simplified version of the code.
When querying a Domino server that ...
0
votes
1answer
295 views
How can I execute a javascript function using lotus formula?
I am on the web, not client.
I need the user to press a button to execute some formula code and then execute this javascript:
function submit(){
var fein = ...
0
votes
1answer
964 views
How do I copy specific text from a document in edit mode and add it to the subject line?
I'm far from an expert, but I've learned quite a little bit about using the Lotus @Formula language recently and have created some very useful buttons for myself. Unfortunately, I'm having trouble ...
