Understanding work item attachments

A work item attachment identifies a named file, screen shot image, URL or text note that a user or an activity has associated with a work item.

Classes for attachments

The system stores attachments in instances of these concrete classes, subclasses of the Data-Work Attach- class:

By default, work item attachments are stored as rows of the pc_data_workattach table. Note that attachments are not stored in the same database table as the work items themselves. (Note that this table is not used for file attachments when the CMIS option is selected. See below.)

File attachments

When a user designates a file as an attachment, the system uploads a copy of the file and links it to the history of the work item. The system saves attachments for correspondence in HTML format (HTM file type) even if a user edited the correspondence with Microsoft Word. If the correspondence includes embedded images or other embedded objects, the attachment is saved as a ZIP archive (ZIP file type) containing the objects and the HTM file. The system converts the ZIP file internally into characters using Base64 encoding.

The description text (Subject field) of a file attachment is limited to 60 characters.

By default, file attachments are restricted to 1 gigabyte in size. You can set a larger or smaller limit with the prconfig.xml file setting:

<env name="Initialization/MaximumFileUploadSizeMB" value="nn" />

where nn is the size in megabytes. (In version 5.5 and earlier releases, the default limit was 25MB.)

Note: As an alternative to the prconfig.xml file, you can use Dynamic System Settings to configure your application. See How to create or update a prconfig setting.

If a user accesses the Pega 7 server with the HTTPS protocol (rather than HTTP), this may block certain download operations from the server to the workstation. For details and suggestions, see PDN article Troubleshooting: "Internet Explorer cannot download messages" (Tomcat with SSL).

Optionally, you can choose to store file attachments for an application in an external content management system such as Alfresco. This capability requires the optional Pega-Connect ruleset.

Storing file attachments in an external enterprise content management system

You can configure your application to store attachments of type file in an external enterprise content management system using the CMIS protocol. This option is enabled by a check box on the application rule.

See About Connect CMIS rules and PDN article How to integrate your application with a content management system.

Note: Informally, these are known as content attachments.

URL and URI attachments

URL and URI attachments can provide flexibility and power while requiring little storage. A URL can point to a document or file on an intranet or the World Wide Web. A URL can also cause Pega 7 to execute an activity in your application; the activity can search or retrieve a document or file, call an external system, and so on.

See PDN article Linking to external documents versus importing them as work item attachments.

Screen shot (screen capture) attachments

A user can capture a screen image of any open window as a JPG file, known as a screen shot attachment. The JPG file is stored internally as characters using Base64 encoding. Use the Advanced View of the standard History and Attachments display to enter screen shot attachments

Scanned document attachments

A user with a scanner attached to her workstation can use Pega Document Scanning to scan documents and attach them as TIFF or GIF image files to work items. The standard Work-.pyCreateScannedDocument local flow action starts this operation. The user can also configure scanner defaults from this flow action.

Use the Work-.ViewImageAttachments flow action to view scanned image attachments from within the Pega 7 application. Use the Advanced View of the standard History and Attachments display to enter screen shot attachments.

Virus checking

Files received from any source might contain computer viruses. You can connect your application's processing of work item attachments to an external virus-checking module. Virus checking occurs before the system saves the attachment to the database. Override the standard extension point activity Data-WorkAttach-File.CallVirusCheck to call the checker and modify processing by the flow to handle files reported to contain viruses. The virus check module can be a Java routine or (when Pega 7 is hosted on Microsoft Windows) in a Windows DLL file.

Limits

While the number of attachments you can add to a work item is unlimited, the standard list view rule  Link-Attachment.AttachmentList.ALL displays only up to 100 attachments. You can override this rule if necessary.

Attachments and search results

If the Index Attachments check box is selected in the Search tab of the System landing page (Pega> System > Settings > Search), a search of work items in a composite User portal can include searching the contents of text-file attachments for a specified word or text string. See Understanding full-text search.

Conversion of DOC to PDF format

Pega 7 provides two approaches to convert Word DOC files to Portable Document (PDF) formats. For each approach, the original DOC file and the converted PDF file become two file attachments, typically of separate categories:

To convert in the background:

  1. Install PegaDISTRIBUTION Manager 3.3.5 on an appropriate Windows server.
  2. Add the Utility activity Work-.ConvertAttachmentToPDF to the flow, supplying as parameters both the name of the existing DOC attachment category and the target attachment category for the PDF file.
  3. In later flow processing, ensure that outgoing correspondence that needs to include the PDF file is not sent until PegaDISTRIBUTION Manager returns the PDF attachment. Conversion can take several minutes.

To convert in the foreground, include the standard flow action .Work-.ConvertAttachmenttoPDF as a local flow action in appropriate assignments in the flow. Users must select this flow action, complete the form, and wait for workstation conversion.

Attachment category rules

You can support attachments with attachment category rules to control the user's ability to add, view, edit, or delete attachments. For more information, see Attachment category.

Attachment reference properties

You can use the standard page list properties pyAttachments and pyAttachmentCategories to reference all attachments or by category. When a the system or the user adds an attachment, the system automatically populates both properties and associates them with the case.

Related Topics IconRelated terms

Related Topics IconRelated information