How to set a default image on an image field (not knowledge)Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Description This article explains how to set a default value for Image fields on a new form. There isn't any OOTB way of setting a default value for the Image type field on a form. The default value in the field dictionary's doesn't set the default image for the record. However, a Before insert Business Rule can be written to populate the field. The images are stored in the sys_attachment table. In the sys_attachment table, the "File name" is the name of the field, and "Table name" is ZZ_YY plus the name of the table (e.g., ZZ_YYincident). "Table sys ID" is the sys_id of the original record. You need to create a before query Business Rule using the following API method: GlideSysAttachment.copy(String sourceTable, String sourceID, String targetTable, String targetID) Copies attachments from the source record to the target record. Parameter(s): NameTypeDescriptionsourceTableStringName of the table with the attachments to be copied.sourceIDStringThe source table's sysID.targetTableStringName of the table to have the attachments added.targetIDStringThe target table's sysID. Example: If you want to populate the image field on a new Incident form, use the following format. GlideSysAttachment.copy("ZZ_YYincident", "<Table sys ID>", "ZZ_YYincident", current.sys_id); Procedure If there is already an image added on an existing record (e.g., Incident), ignore step 2Add an image to the image field on the formGo to sys_attachment.LISTFind the recent record for the field (record of the image that you want to use as a default)Copy the sys ID from "Table sys ID" columnCreate a Before Insert Business Rule on the Table as follows:When: before - InsertActive : <checked>Advanced: <checked>**script:GlideSysAttachment.copy("ZZ_YYincident", "<Table sys ID>", "ZZ_YYincident", current.sys_id);Result: Image field will be auto-populated when a new record is created in the table.Note: The steps provided above are for Incident table. You can use the steps for other tables as well. Applicable Versions All releases Additional Information API DocumentationProduct DocumentationCommunity article