Maximum files upload in a record

manoj12398
Giga Contributor

Hi,

What is the max file size limit and how many files we can attach in a single record?

Is count of files attaching is not limited, can we attach any number of files each file having max file size limit.

Can you please suggest

2 REPLIES 2

rlatorre
Kilo Sage

I do not believe the number of attachment on a record is limited.



See these properties for setting attachment size limits:


NameTypeDescription
com.glide.attachment.max_get_sizeintegerMaximum file attachment size in bytes:
com.glide.attachment.max_sizeintegerMaximum file attachment size in megabytes:
glide.email.inbound.max_attachment_countintegerThe maximum number attachments allowed on an inbound email. Attachments beyond this limit are ignored.
glide.email.inbound.max_total_attachment_size_bytesintegerThe maximum combined size (in bytes) for all attachments on an inbound email. Attachments beyond this limit are ignored.
glide.email.outbound.max_attachment_countintegerThe maximum number attachments allowed on an outbound email. Attachments beyond this limit are ignored.
glide.email.outbound.max_total_attachment_size_bytesintegerThe maximum combined size (in bytes) for all attachments on an outbound email. Attachments beyond this limit are ignored.

sebastian_g_snc
ServiceNow Employee
ServiceNow Employee

Hi,


You could also use a before insert business rule: check the attachment table for the number of existing attachments, if it exceeds your limit, abort the insert and display an info to the user.


Best,