Hi cezarF,
How do I proceed for the second method that is send a mail and inside this mail message, when user click it, it will compose a new form straight away?
Main Topics
Browse All TopicsI have created a form in my database and there is a Names type field which allow multiple names.
How do I create a button such that e.g. when the owner created the form and click on the button to send to multiple users A, B, C, users A,B and C will receive this form and will reply to the form individually. In this way, this database will store 3 forms which contains the responses reply by user A, B and C?
Please advise.
Thank you.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
1. Create a Lookup Document form with following fields: LookUpKeyword, LookUpCategory, LookUpDescription, LookupField1-5 (depends on how many you like) and a Body RichText field (body of the email and button)on it. Create a LookUpView displaying LookUp Documents sorted by LookupKeyword.
2. Compose the actual lookup document. The body field should contain the actual email that your program will send with the button (HotspotButton). This document will serve as your template
3. In the hotspot button, @Command([Compose]; server : database ; "YouReplyForm")
4. Create a program to get the mail Body from the lookup document and send it.
cezarF is generally correct.
A few caveats.
1)Are you worried about them creating more than one document per user ?
2) WIll they be allowed to go back and edit or make changes ?
If yes to either one, you will first need to search the DB by user name to see if they already have a document, and open it in Edit mode rather than creating a new one.
Other option is to send them back via email a link to their own document, after it has been saved in the DB.
I did something similar for an Internal Survey Db.
I hope this helps !
Here's what I've done in the past, and it's worked great for me!
First, you'll want a database that stores your "responses" - this will be where all of the actual work is done - so you'll want your forms, any views you want to display to the user, etc.
Next, you'll create a dummy local mail database. Modify the DB preferences to allow the use of stored forms in the database. Now modify the Memo form to do the following:
On the QueryOpen, check the current user's name (the opener) and see if they have a document that needs completion in the other database. If so, immediately open that form. If not, return a message saying "Thanks - you're already finished" or whatever. Return False and exit (don't open the memo in the UI.
What you've basically done is send a user-sensitive "quicklink" to your inteded recipients which will allow them to immediately access the content that you want them to without relying on them opening the email, clicking on a link, etc. OR worrying about an embedded editor or anything like that.
HTH,
-Chris
Hi All,
How do I amend my formula below to send to each person and the person when click on the link inside their mail message, will open up the survey form directly?
I have no idea how to start to amend below formula? Kindly advise.
Thank you.
@Do(@SetField("csstatus"; "Awaiting Reply");
FIELD SaveOptions :="1";
@PostedCommand([FileSave])
@MailSend(cename;"";"";"<C
@PostedCommand([FileCloseW
@Command([FileCloseWindow]
If you are doing it with DocLinks, you will need three documents in the originating system instead of one. One way around this would be when the user clicks the link, he sees an empty survey with a button that says "click here to start filling in this survey." CLicing that button actually creates a new survey document, so that the SAVED version is unqieue to each user.
Business Accounts
Answer for Membership
by: cezarFPosted on 2007-09-24 at 23:36:03ID: 19953755
you can store the form in the document.
1. in design time
To store a form with each document
1. Open the form.
2. Choose Design - Form Properties.
3. Click the Form Info tab.
4. Select "Store form in document" and close the Form Properties box.
5. Open the Database Properties box. At the Database Basics tab, check "Allow use of stored forms in this database" and close the Database Properties box.
2. in lotusscript when sending
Call notesDocument.Send(true)
Note that the document will be bigger in size if the form is stored in it.
another approach is to just send a mail with a button that will compose a new document using the form on your database.