Bug 14742 - 082 field corrupt in FA Framework in new installs
Summary: 082 field corrupt in FA Framework in new installs
Status: RESOLVED DUPLICATE of bug 14478
Alias: None
Product: Koha
Classification: Unclassified
Component: Cataloging (show other bugs)
Version: 3.20
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Galen Charlton
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-08-27 13:45 UTC by David Roberts
Modified: 2020-01-07 23:29 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***