How to embed a video in HTML field using sys_attachmentIssue This Knowledge article helps to understand how to embed a local video file on the HTML field using attachment table in ServiceNow instance.ResolutionSteps to Perform: Create a dummy record in the instance and attach a video to it. Now, this attachment is captured in the sys_attachment table. To use sys_attachment as the source for video, navigate to the sys_attachment table and capture the sys_id of the attached record.Go to the corresponding HTML field where video to be inserted, use the below video tag in HTML source and provide the sys_id accordingly. Based on the need, the width and height of the video frame can be adjusted by changing the values.<video controls="controls" width="100%" height="150"><source src="/sys_attachment.do?sys_id=[Sys ID of the attachment goes here]&view=true" type="video/mp4" /></video>