[Koha-bugs] [Bug 14742] New: 082 field corrupt in FA Framework in new installs

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Aug 27 15:45:31 CEST 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14742

            Bug ID: 14742
           Summary: 082 field corrupt in FA Framework in new installs
 Change sponsored?: ---
           Product: Koha
           Version: 3.20
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Cataloging
          Assignee: gmcharlt at gmail.com
          Reporter: david.roberts at ptfs-europe.com
        QA Contact: testopia at bugs.koha-community.org
                CC: m.de.rooy at rijksmuseum.nl

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   |

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list