---
sourceDocument: Yokohama ServiceNow AI Platform Administration
sourceDocumentLink: https://www.servicenow.com/docs/r/yokohama/platform-administration

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama ServiceNow AI Platform Administration

ft:clusterId :

    - platadm

bundleId :

    - platadm

workflow :

    - Platform


---

# Administering attachments

# Administering attachments {#ariaid-title1}

* Release version: Yokohama
* 
* Updated January 30, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 3 minutes to read

Summarize  
![AI sparkle icon](https://servicenow.com/docs/portal-asset/ai-sparkle-icon) Summarized using AI  
This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.  

## Summary of Administering attachments

ServiceNow administrators can configure how file attachments are handled within the platform, including uploading, viewing, deleting, and indexing attachments.
Attachments generate system events useful for notifications or scripting, and administrators can control attachment behavior through system properties to optimize performance, security, and user experience.
Show full answer Show less  

## Attachment Storage and Management

* Attachments metadata is stored in the **sysattachment** table, while file data is chunked and stored in **sysattachmentdoc**.
* Uploading, viewing, or deleting attachments triggers a single event per record, regardless of the number of attachments.
* Activity stream thumbnails are scaled automatically via the **glide.ui.activitystream.scaleimages** property, with a default max size of 525x350 pixels.
* Large image files over 5 MB may cause out-of-memory errors; this is controlled by the **com.glide.attachment.maxgetsize** property, which can be adjusted to prevent system restarts by skipping scaling and providing links instead.

## Attachment Events and Logging

* Key attachment-related events include **attachment.read** , **attachment.uploaded** , **attachment.deleted** , and **attachment.renamed**.
* Events enable tracking of attachment interactions, such as who downloaded a file and when.
* Attachment read events provide parameters like file name and table name for detailed logging or notification actions.

## Debugging and Security

* Attachment indexing debug options are available via properties **glide.ts.index.attachment.debug** and **glide.ts.index.attachment.listterms.debug**, which assist in troubleshooting indexing issues.
* For security and performance tuning, administrators can review settings related to attachment processing as part of instance security hardening.

## System Property Configuration

* Administrators can disable drag-and-drop attachment uploads while still allowing file browsing uploads.
* Attachment file size limits, allowed file extensions, and upload permissions can be controlled.
* Attachments can be disabled on specific tables to prevent file additions.
* Attachment indexing can be enabled per table to support text search in both records and attachments.
* The \[view\] link for attachments, which opens files in-browser with JavaScript execution, can be hidden for security reasons, while still allowing access via file names.
* Attachment icons can be customized based on file types to improve user interface clarity.  
Administrators can configure system properties for how files are uploaded and attached
to records. Uploading, viewing, and deleting file attachments triggers a single event that can
be used for notifications or in scripts.

## Attachment tables {#r_AdministeringAttachments__section_sn5_rnw_t1b}

When you store an attachment to any table, a record is created in the Attachment
\[sys_attachment\] table that contains attachment metadata. The file data is stored in the
Attachment Document \[sys_attachment_doc\] table, in 4k chunks. For example, if you attach a
12k file called My_attachment.pdf, then there is an Attachment entry
with three related Attachment Document entries.

To learn how to upload attachments to records, see [Add and manage attachments](https://www.servicenow.com/docs/access?context=t_AddingAnAttachment&version=yokohama&pubname=yokohama-platform-user-interface&ft:locale=en-US).

## Activity stream thumbnail scaling {#r_AdministeringAttachments__section_zdr_n2x_t1b}

The glide.ui.activity_stream.scale_images property scales large images down and creates thumbnails for the activity stream view of the images. This property is active by default. It applies to images retroactively, so any attachments included in an activity stream in the past also see the effects.

* Maximum dimensions for thumbnails using this property are 525 pixels width by 350 pixels height. The system favors the pixel height first, so you can end up with images that are wider than 525 pixels.
* Attaching image files over 5 MB can create an out of memory error and cause the instance to restart. An out of memory error and restart occur when the system generates the thumbnail when you attach a new image. The error and restart can also occur the first time you load existing images on a record.
* The administrator can add the com.glide.attachment.max_get_size system property to control the maximum image scaling dimensions.
{#r_AdministeringAttachments__ul_u4p_rrm_rkb}  
Enter the following information into the \[sys_properties.list\] table:{#r_AdministeringAttachments__table_tg1_mnt_51b__entry__2}

| Field | Description |
|-|-|
| Name | com.glide.attachment.max_get_size |
| Type | integer |
| Value | 5242880 |
[ ]

{#r_AdministeringAttachments__table_tg1_mnt_51b}  
The value field represents the size in bytes.

* The base system value is 5242880 bytes (5 MB). You can change the value as necessary.
* With this property set, images that are larger than 5 MB are not scaled and the system creates a link instead. Images smaller than 5 MB are scaled down.
{#r_AdministeringAttachments__ul_pvd_wrm_rkb}

## Configure the max image size property for Activity Streams {#r_AdministeringAttachments__section_xnv_4qz_51b}

When attaching an image in an Activity Stream, the system controls the maximum size of the
image. Use the com.glide.attachment.max_get_size property to control
the maximum image scaling dimensions.

## Attachment events and logging {#r_AdministeringAttachments__section_ojh_wnw_t1b}

A script action or notification can process attachment events. Only one event is created
when action is taken on a record with attachments, even when the record has multiple
attachments. The following events are provided.

Only one event is created when action is taken on a record with attachments, even when the
record has multiple attachments. The following events are provided.
{#r_AdministeringAttachments__table_yrk_h4w_p4__entry__2}

| Event | Description |
|-|-|
| attachment.read | An attachment has been read or downloaded. |
| attachment.uploaded | An attachment has been uploaded. If multiple attachments are uploaded to a record at one time, only one event is created. |
| attachment.deleted | An attachment has been deleted. This event is also triggered when the record containing the attachment is deleted. If a record is deleted that contains multiple attachments, a separate event is triggered for each attachment in the deleted record. |
| attachment.renamed | An attachment has been renamed. |
[Table 1. Attachment events]

{#r_AdministeringAttachments__table_yrk_h4w_p4}

## Attachment logging {#r_AdministeringAttachments__section_akw_2nw_t1b}

When an attachment is downloaded, the attachment.read event record is written, and you can do something with this event. For example, you can record when and by whom certain attachments are downloaded. For this functionality, current is a sys_attachment record, and the event record uses the following parameters:

* parm1: File name
* parm2: Table name
{#r_AdministeringAttachments__ul_s1t_3yg_xw}

## Debug attachment indexing {#r_AdministeringAttachments__section_blr_z2x_t1b}

To change debugging options for attachment indexing, add these system properties.  
* glide.ts.index.attachment.debug: When the value is set to true, enables log messages for exceptions that occur when indexing attachments (default is false).

  You can leave this
  property enabled during normal operations to capture stack trace information about any
  exceptions.
* glide.ts.index.attachment.list_terms.debug: When the value is set to true, logs all indexed terms when an attachment is indexed (default is false).

  \[Recommended\] For optimal performance, set
  this property to false during normal operations. Only enable
  this property when you are actively debugging an issue.

{#r_AdministeringAttachments__ul_ljk_npr_np}  
Note:  
To learn more about the properties that affect attachments processing, see Attachments (instance security hardening) in Instance Security Hardening Settings.
* **[Configure attachment system properties](https://www.servicenow.com/docs/jCB~xk5JJYRoWL5j7a0QrA#t_DisablingTheDragAndDropFeature)**   
  You can disable the drag-and-drop feature. (Users can still upload attachments by browsing to the file.) You can also limit the attachment file size, restrict who can upload attachments, and restrict what file extensions can be uploaded.
* **[Disable attachments on a table](https://www.servicenow.com/docs/oYQMPAY6XqIoZo8ecunQaw)**   
  You can prevent users from adding attachments to records on a specific table.
* **[Index attachments on a table](https://www.servicenow.com/docs/SdH~eP2Q4F5_a8FYog~Y6g)**   
  You can enable attachment indexing for a table so text searches can return matches from the record and its file attachments.
* **[Hide the attachment \[view\] link](DzqN_0grhnfjZKDTWDk9Iw)**   
  Users can open an attachment by clicking either the file name or the \[view\] link. The \[view\] link opens the file from within the browser, which executes JavaScript code as part of the attachment. You can hide the \[view\] link. Users can still view attachments by clicking the file name.
* **[Configure attachment icons](https://www.servicenow.com/docs/95UEKHmDNYUmRJ2jxbw7Og)**   
  Configure the icon that appears beside an attachment of a particular file type.

