Simultaneous update alert is shown when saving a form after adding an attachmentIssue <span id="__caret">_</span>�<span id="__caret">_</span>�<span id="__caret">_</span>�<span id="__caret">_</span><!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms When using the crossfuze simultaneous update alert package, after adding an attachment to a form, the user receives a simultaneous update alert popup when saving, even if no other updates were made. Release All Cause The crossfuze script include SimultaneousUpdateAlert checks to see if the record was last updated by the current user. When adding an attachment, the update is made under the user: 'system'. As system is not the current user, the script include will show the simultaneous update alert popup. Resolution To resolve this, you can add an additional check for the system user to the SimultaneousUpdateAlert script include. 1) Navigate to System Definition > Script Includes 2) Find the SimultaneousUpdateAlert script include entry 3) In the script text area, change line 8 as shown below: if(rec.sys_updated_by != this.getParameter('sysparm_user') && rec.sys_updated_by != 'system'){ 4) Save the record