Bug 14742

Summary: 082 field corrupt in FA Framework in new installs
Product: Koha Reporter: David Roberts <david.roberts>
Component: CatalogingAssignee: Galen Charlton <gmcharlt>
Status: RESOLVED DUPLICATE QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low CC: katrin.fischer, m.de.rooy
Version: 3.20   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

Description David Roberts 2015-08-27 13:45:31 UTC
In a new install of Koha, the 082 field doesn't display in the FA framework, yet when you try adding a catalogue record using that framework the 082 displays (without a field description).

This problem is caused by the following row in the marc_tag_structure table:

| 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION NUMBER |  1 |  0 | NULL |  |


To fix it, you need to use the following SQL:


update  marc_tag_structure set frameworkcode = 'FA' where tagfield = '082                                                             ' and frameworkcode = '';

This alters the row to the following:

| 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION                                                              NUMBER |   1 |   0 | NULL   | FA   |
Comment 1 Katrin Fischer 2020-01-07 23:28:47 UTC

*** This bug has been marked as a duplicate of bug 14778 ***
Comment 2 Katrin Fischer 2020-01-07 23:29:57 UTC

*** This bug has been marked as a duplicate of bug 14478 ***