How to compose a response doc on web?

Is there any standard way to create response docs on web?

I know I can manually put the parent doc uid in $Ref field but I was hoping there is an easier way to do this

Thanks

Basir

Subject: how to compose a response doc on web?

You can use:

@Command([Compose];“ResponseFormName”)

(which automatically creates a response (or response-to-response) from an existing document) or use the following Domino URL command:

http://server/path/db.nsf/responseformname?OpenForm&ParentUNID=XXXX

(which is the URL that Domino redirects to from the @Command above).

If you want to create a response in an agent, look at the MakeResponse method.

Subject: Thanks Stan as always :slight_smile: