Seascape for Notes
DocsSupport RequestWebsite
  • Seascape for Notes
  • Installation
    • Installing and activating
    • Offline license activation
    • Uninstalling
    • Upgrading
    • System requirements
    • Release history
      • Flex
  • Database archiving with Seascape
    • Archiving methods (Videos)
    • Web Archive
      • Web archive file structure
      • Web Archive interface
      • Database catalog
      • Option: Seascape Flex server
    • SharePoint Archive
      • Export a database
      • Map SharePoint columns
      • Upload data automatically to SharePoint
      • Manually uploading data to SharePoint
      • Notes attachments
      • Notes doclinks
    • Disk Archive
    • Export log
    • Database analysis tool
  • Seascape Flex
    • What is Seascape Flex?
    • Installing Seascape Flex
    • Flex search
    • Flex administration
    • Flex database permissions
    • Connecting Flex to Active Directory
    • Enabling HTTPS on Seascape Flex server
    • Security
    • Adding new databases to Flex
    • Audit log
  • Seascape settings
    • General settings
    • Export settings
    • PDF settings
      • PDF/A format description
    • Alternate forms
    • Folder formulas
    • Product limitations
  • FAQ
    • How to disable HTTP stream
    • Save Notes metadata in CSV format
    • How can I change styles in the Web Archive?
    • Which view/folder types are supported?
    • How to Change the default view for the web-archive?
    • What is the SWING Seascape installation footprint?
    • PDF filename Unicode compliance tips
    • How to enable PDF search in Windows (64-bit)
    • Do I need to have the latest JRE (Java Runtime Environment) installed on my Workstation?
    • How are licenses consumed?
    • How can I access attachments in the Web Archive?
    • How to configure PDF file naming rules
    • How to create a single database catalog from existing archives
    • How to exceed SharePoint list view threshold
    • How to export computed fields
    • How to export hidden email folders
    • How to export mail outline
    • How to update a Seascape archive
    • How to export HTML fields
    • How can I preserve non-English characters in PDF
    • How to open .zip attachments in Adobe Reader
    • How to edit/remove views in exported web archive
    • How to change default view in exported web archive
  • Troubleshooting
    • Troubleshooting Guide
    • Error messages
      • Type mismatch (13)
      • There is another PDF conversion process already started
      • swllrend.dll corrupted or not extracted
      • ExceptionConverter: java.security.NoSuchAlgorithmException
      • Exception in thread "Launcher: SwCreatePDF" java.lang.NoClassDefFoundError: -CLASS NAME-
      • Domino HTTP Error Loading Java Virtual Machine
      • Cannot write or create file (file or disk is read-only)
      • ReferenceError
    • General issues
      • There's no "Show Java Debug Console" option in my Notes client
      • Notes password issue
      • View the conversion log in case of a Notes crash
      • Zip files can not be detached from PDF
      • Conversion speed is slow
      • How to send sample Notes documents to Support
      • How to enable SWING Seascape with Symantec Endpoint Protection (SEP)
      • Header and footer not visible in my emails
      • Email images do not appear in PDF
      • Document links not working
      • Thai symbols not shown in PDF document
      • Twistie icons not showing in Firefox 68
      • "Too many columns" for SharePoint upload
  • Support
    • Support Request
    • Premium Export Services
Powered by GitBook
On this page
  • Lotus Notes form fields
  • Notes formula examples

Was this helpful?

  1. FAQ

How to configure PDF file naming rules

PreviousHow can I access attachments in the Web Archive?NextHow to create a single database catalog from existing archives

Last updated 3 years ago

Was this helpful?

The PDF files generated using the SharePoint or Extract to disk export methods can be saved using custom naming rules.

The naming rule is applied using a simple Notes formula which combines one or more Lotus Notes fields into a single text string to be used for the file name.

Here are the instructions for setting up a custom naming rule for your PDF files.

1. Open your Seascape database, click Settings > Export Settings, and open the export configuration document you would like to edit by double-clicking on it:

2. Enter your file naming formula in the provided field, and save your changes:

3. When you start an export the next time, select the export settings you updated and the PDF files will be named according to the new rule you set up:

Lotus Notes form fields

To locate the correct names of the Notes form fields to be used in your formula, open your Lotus Notes document, then right-click on it and open the document's properties popup.

In the popup which appears open the second tab from the left. The list of available form fields that you can use will now be shown in the popup:

Notes formula examples

Here are a few typical examples of Notes formulas which can be used in your Notes mailbox:

1. The following formula can be used for emails to name PDF files by delivery date and time and subject, separated with underscore:

@Text(DeliveredDate) + "_" + @Text(Subject)

"DeliveredDate" and "Subject" are typical fields for email documents. For example, a message with subject "Re: Follow-up message" received on December 8th 2011 will be converted to PDF with following file name: 08.12.2011 19 39 31_Re Follow-up message.pdf

2. In this example we removed time, so our file name contains only date and subject:

@Text(@Date(DeliveredDate)) + "_" + @Text(Subject)

The result: 08.12.2011_Re Follow-up message.pdf

3. In this example we decided to format date differently and we included "From" field, now we can see who sent this message without opening it:

@Text(@Year(DeliveredDate)) + "-" + @Text(@Month(DeliveredDate)) + "-" + @Text(@Day(DeliveredDate)) + "_" + @Text(Subject) + "_" + @Text(From)

The result: 2011-12-8_Re Follow-up message_info@swingsoftware.com.pdf

4. This example is slightly different, file name contains form name and date of the conversion:

@Text(Form + "-" + @Text(@Year(@Today)) + "-" + @Text(@Month(@Today)) + "-" +@Text(@Day(@Today)))

The result: Memo-2011-12-9.pdf

5. **** In this example, the PDF files will be named simply according to their unique document ID:

@documentuniqueid

The result: 9900B68769EDF884C12576DD005CC16E.pdf