Why does creation of software entitlement give "Cannot read property 'table' of null" error after activating SAMP?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; } --> Symptoms Navigate to Software Asset>Software entitlement, create new. On submit you will receive error: ##################################### onSubmit script error: TypeError: Cannot read property 'table' of null: function onSubmit() {var purchased_rights = g_form.getValue('purchased_rights');var active_rights = g_form.getValue('rights');var list = GlideList2.getByName('alm_license.samp_upgraded_entitlement.licensed_by');var row = list.table.getElementsBySelector('tr.list_row');var list_row_sysId;var total_rights = 0;if (purchased_rights < 0) {g_form.showErrorBox('purchased_rights',getMessage('Please enter positive number'),true);g_form.modified = false;return false;}for (var num_rows = 0; num_rows < row.length - 1; num_rows++) {list_row_sysId = row[num_rows].getAttribute('sys_id');total_rights = total_rights + parseInt(list.getCell(list_row_sysId, 'num_rights').textContent);if (total_rights > purchased_rights) {g_form.showErrorBox('purchased_rights',getMessage('Do not have enough rights'),true);g_form.modified = false;return false;}if (active_rights != 0 && active_rights < total_rights) {g_form.showErrorBox('rights','Do not have enough active rights',true);g_form.modified = false;return false;}}return true;} ####################################### Cause The software entitlement form is missing a form section "Upgraded entitlements". This form section is being accessed by the above code. The upgraded entitlement section is part of file sys_ui_form_sections_08fdf65d1b3210002502fbcd2c071311 Resolution Navigate to sys_update_version table, please search for the file sys_ui_form_sections_08fdf65d1b3210002502fbcd2c071311Identify the file that is created on the same day as the SAMP activationOpen the record, revert to this version of the file by clicking the related link "revert to this version"