Documentation Index

Fetch the complete documentation index at: https://knowledge.technolutions.net/llms.txt

Use this file to discover all available pages before exploring further.

Exporting Confirmation/Acknowledgement Statements with Electronic Signatures using a Document Export Query

Prev Next

Use a custom PDF and a document export query when your process requires a downloadable or scheduled copy of an electronically signed confirmation or acknowledgement statement. The custom PDF supplies the statement text and mapped signature fields. The document export query returns the generated PDF and, when needed, an index file.

   
       

⭐ Get Inspired

   
   

This article was adapted from a post by Technolutions staff in the Slate Community Forums' Get Inspired space. Have a great idea for a Get Inspired post? Let us know!

Choose a signature storage approach

You can support this pattern in either of these ways:

Approach

Use when

Considerations

Store signature values in application-scoped fields

You want a durable signature and submission date value directly on the application record.

Requires creating and mapping fields before configuring the custom PDF.

Read values directly from the form response

The form is submitted once per application and the custom PDF can use the form response as the source.

Requires a merge query that joins to the correct form response, typically sorted by submitted date descending.

Create the form and signature fields

  1. Create an application-scoped form.

  2. Add the confirmation or acknowledgement statement text to an instruction block.

  3. Create the fields needed to capture the electronic signature and signature date. For the field-based approach, create application-scoped fields.

  4. Add the fields to the form.

Create and upload the custom PDF

  1. Create a PDF version of the statement text outside Slate.

  2. Go to Database > Files.

  3. Upload the PDF.

  4. Set the path to begin with /apply/, such as /apply/confirmation_statement.pdf.

Map data onto the custom PDF

  1. Open the custom PDF configuration.

  2. Add mapped fields for the signature and signature date.

  3. If the PDF needs values that are not available directly, configure a merge query and use it to supply the mapped data.

  4. Save and preview the PDF against a test application.

Create the export material

  1. Create a custom material for the custom PDF.

  2. Use a material key that matches the custom PDF naming convention. For a custom PDF stored at /apply/confirmation_statement.pdf, the related system material key should follow the custom-mapped PDF convention described in Configuring Document Export Materials.

  3. Configure the material export value required by the receiving system.

Build the document export query

  1. Create a configurable joins document export query.

  2. Add filters that return the applications and custom material to export.

  3. Include the required pdf:file and pdf:xml exports.

  4. Add any exports required for the index file, such as the applicant identifier used by the external system.

  5. Run the query and test the formatted export output.

📝 Note

Document export queries require pdf:file and pdf:xml. Do not remove or rename these exports.

Schedule the export when an index file is needed

If the receiving process requires an index file, configure the query's scheduled export settings. The scheduled export controls the output package and index file behavior for document exports.

Use form response fields directly

Instead of storing signature values in separate application-scoped fields, you can use fields from the form response directly when each application should have only one relevant submission.

  1. Create the same custom PDF and custom material.

  2. In the merge query, add a base join to the application-scoped form.

  3. Sort the form response join by submitted date in descending order so the query returns the most recent submission.

  4. Rename the join clearly so future maintainers understand which form response is being used.

  5. Map the form response fields onto the custom PDF.

Still looking for what you need?