Error: Publisher and Product manufacturer do not match - Invalid InsertIssue <!-- 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; } --> Unable to create new software models or update existing software models. 1) Go to Software Models > New 2) In the product field, search and select software product (This will add the publisher) 3) Save or Submit Software Model 4) A client script errors display, and model does not get created: Invalid insert and Publisher and Product manufacturer do not match. CauseThe reason is two parts: 1) There might be many records in core_company table for the same manufacturer. 2) The manufacturer in the software publisher table is not set to the core_company where normalization = true.ResolutionPART 1: 1) For the software you are trying to create, go to the core_company table. 2) Find the company(manufacturer) for that product 3) Search for all records in that table to see if you have duplicates for that company 4) Add the 'normalization' column to the list view so you can see the value for that field (see sample below). 5) Notice that only one of the 4 has field normalization = true. If you are getting the error, you may have more than one. 6) To fix this, one way is to Export XML on those records - In the XML modify the value inside the tags <canonical>true</canonical> to <canonical>false</canonical> for all of the records EXCEPT one of them (I would pick the one that is newest as the one you want to keep as true, if it is false then leave it as is). Note: You will not be able to change that value through the UI. 7) Import that XML back into that table. This will change the values for you. PART 2: 1) Next, we have to be sure that the software publisher record points to that core company record where we have normalization = true. 2) Go to software publisher table (samp_sw_publisher.list) 3) Find the publisher in question. Open the record and do a 'Show XML' of that record. 4) The value inside the tags "<manufacturer>[sys_id]</manufacturer>" should be pointing to the core company record where we have normalization = true. 5) If it is not update the field so it does point to the right record. Example: <manufacturer display_value="TechSmith">0eb2f545db426740fb54fd7aae961931</manufacturer> 6) Save this record. Now you should be able to create the software model record. Related LinksHINT: to be sure you are picking the correct one in 'Part 2, step 5', you can look at the sys_id of the core_company record you selected to be normalized. Then in the software publisher record, you can show XML on it and see the Manufacturer field's value to make sure the sys_id matches. That way you know you picked the right one.