Attach Multiple Files to a Domino Document

Attach Multiple Files to a Domino Document

Here is a slick workaround that allows users to attach multiple files to a Domino document using the browser's File Upload Control. If the user indicates they want to attach another file, the document saves and re-opens in edit mode so that another file can be attached.

To incorporate this functionality in your form, perform the following steps:


1. Create an editable keywords field below the Upload Control and call it "AttachAnother". The choices for this field should be "Yes" and "No". Verify that the interface for this field is set to "Radio Button".

2. Create a computed for display field called "$$Return". Enter the following formula for it's value:

db := @Subset(@DbName;-1);
attachdoc := "[/" + db + "/(UniqueDocID)/" + @Text(@DocumentUniqueID) + "?editdocument]";
success := "Document has been saved.";
@If(AttachAnother = "Yes"; attachdoc; @Return(success))

3. Create a hidden view, called "(UniqueDocID)". The view selection formula should be "SELECT @All". The view only needs to contain one column, sorted in ascending order, with the following column formula:

@Text(@DocumentUniqueID)

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This was first published in March 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.