Inheriting Values From Selected Doc In View Applet

Inheriting Values From Selected Doc In View Applet

Here's a way you can use a view action button on the web to inherit values from
the view's selected document into a new document.
[Note: @Command([Compose]; "InheritanceForm") won't work on the view level on
the web, although it works fine from a form action button with the parent doc
open.]

This technique combines the URL field inheritance approach described in Notes
Designer Help with an undocumented view applet API call mentioned in Lotus's
Killer Apps 2.
Assuming you have field inheritance working from the Notes client, just make an
view action button with the following javascript (modified for your particular
server, db, and form names, of course):

var vectorSelected = document.applets.view.getSelectedDocumentsEx();
var docUNID = vectorSelected.elementAt(0);
top.location="http://server/db.nsf/InheritanceForm?OpenForm&ParentUNID=" +
docUNID

Go to the web, select the desired parent doc, click the action button, and
rejoice.

    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 November 2000

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.