Custom Field Type: Upload - Single File Storage

From SmartWiki
Jump to: navigation, search

General Description

Stores a single file into a single field. This field type is used to store a single uploaded document.

Field Illustrated

Cf sf ex2.png

Field Options

All common options:
General Settings
Permissions & Availability
Classic Options
For further information, please refer to Custom Fields – General Information.

Options listed below are specific to this particular field type.

Security Options

  • Allow External Access: if there is an externally enabled report that includes files in this Multiple Files field, anyone viewing the report will be able to click on the file names listed on the report for this Multiple Files field and view the underlying files.
  • Enable Online Editing - when enabled an edit button will appear next to the documents in this field that will allow users to edit the documents online. When the changes are saved the updated document will automatically be saved back into the appropriate Multiple Files field. (Note: documents with special characters such as apostrophes in the file name may not be editable) See Online Editing.
  • Real-Time Virus Scan - performs virus scan on uploaded documents

Other Options

  • File Indexing – enable file indexing and full text searching using the Lucene full text search engine, which is built into SmartSimple.
  • Create Optimized Image Version: If checked, a small version (thumbnail) will be created when the user uploads an image. The thumbnail image will be compressed and restricted to 1024 pixels wide. The thumbnail can be called using the syntax @fieldname.compressedlink@. This feature is intended to improve the load time of pages displaying many high resolution images.
  • Enable Annotation – allows users to add annotations to uploaded PDF documents from within the SmartSimple system.
  • Disable Email Button - Removes the ability of users to e-mail the file directly from within SmartSimple.
  • Disable Delete – suppress the user’s ability to delete any files stored in the field, and manager permission is required by the user to delete an Allow Delete Multiple Files Fields
  • Enable Excel Parsing - parse an uploaded Excel file and populate mapped fields based on the file's content.
  • File Type Restriction - Use this option to specify the only file types that may be uploaded, in a comma-separated list. Please note that file extensions (e.g., txt, jpg, pdf) must be in lower case. See the File Type Restriction page for further information.
  • File Name Restriction - Allows you to enforce a file naming convention on files uploaded to SmartSimple. See the File Name Restriction page for more information.
  • Maximum File Size - drop-down with options to allow a limit on the file upload size
  • Workflow on Upload - Allows you to define a Workflow that will be triggered whenever a file is uploaded to this field.

Special Field Options

Indexing Multiple and Single File Fields

The Link Multiple File Field and the Link Single File Field both support a file index feature. Using this feature provides the ability to search documents attached to the field (subject to the user having permission to access the field).

File Types Supported

  • When you add a document to this file you must make sure that the document can be indexed for searching. The following types of documents are supported: Microsoft Word and Excel, Adobe PDF, HTML and RTF files.

Ensuring that PDF Files are searchable

  • If using PDF you must ensure that the files are text-searchable. You can test for this functionality by opening the file with Adobe Acrobat Reader and ensuring that the Select Text tool can be used to select text from the file.

Indexing after uploading

  • The indexing function takes place when the file is first uploaded so if you decide to index a file after the file is uploaded you must re-index the field. Use the following steps to index the field:
  1. Locate and edit the Custom Field.
  2. Click the File Index check box.
  3. Click the Save button.
  4. Click the File Index button in the action bar.
  5. Click the option button Re-index all files in this field now!
  6. Click the Save button.

Disabling a File Index

  • If you wish to disable the File Index function and no longer make attached files searchable use the following steps:
  1. Locate and edit the Custom Field.
  2. De-select the File Index check box.
  3. Click the Save button.
  4. Click the File Index button in the action bar.
  5. Click the option button Remove index from all files in this field now!
  6. Click the Save button.


Display Additional File Attributes for PDF Documents

  • If the Single File field is going to store a PDF file, you can also create a Read Only - System Variables field to display additional attributes about the file (called Meta Data).
  • The additional attributes that can be extracted and displayed are: author, creator, producer, keywords, subject, title, number of pages, creation date and modified date.
  • See Display Additional File Attributes for PDF Documents for details on how this is accomplished.


Emailing Document

  • The document stored within this file can be E-mailed from within SmartSimple by clicking the Lookup... button (which may have been re-labelled with the Button Label option described above) and then clicking Email.


Variables

The following extensions can be used with Single File fields:

  • .value: the path (URL) of the file
  • .filename: lists the name of the file (including extension such as .pdf, .doc etc)
  • .numOfpages: if a PDF file is stored in the field the number of pages in the PDF document will be displayed.
  • .uploadlink: the URL that can be used to upload a file to the field.

Examples

Show number of pages:

@Contract Document.numOfpages@

Upload file function using hyperlink:

<a href="@Additional Files.uploadlink@" target="_blank">Click Here to upload</a>

Upload file function as a button:

<input class="Button" type="button" value="Upload File" />

Calculate the length of the uploaded filename (for use in validation, will work for non-PDF file types, will return 0 if no file uploaded).

<!--@sscalculation(length("@Budget Upload.filename@"))-->


Notes

  • Commas in the file names of uploaded files will be replaced automatically with underscore characters ("_"). This is to prevent errors with JavaScript execution.


See Also