Hello Aida,

We are UNIMARC users too (in Greece) and came across the same issue while evaluating Koha 22.11.

You need to take a couple of steps in order for the MARC bibliographic framework test to complete without errors.


However, I just wanted to point something out first: I can see from your message that you're using Koha's "Default" framework.

As per the official manual [1], it's a good idea to create a clone of the "Default" framework (e.g. name it "Books") and apply any changes to your new framework. Then, use that new framework when cataloguing books.

Otherwise you may run into problems if you perform a Koha upgrade later on and the "Default" framework's definition for UNIMARC has changed in the mean time.


For the first error, in "Administration > Koha to MARC mapping" you should keep just one Koha-to-MARC mapping for biblioitems.itemtype (e.g. delete the one for subfield 099$t and keep the one for 942$c).


Then, for the second error the easiest way to fix it is (once you've created your new framework) to run the following SQL statement (replacing <YOUR_FRAMEWORK_CODE> with your new framework's code):

UPDATE marc_subfield_structure SET tab = 4 WHERE frameworkcode = "<YOUR_FRAMEWORK_CODE>" AND tagfield LIKE '4%' AND tagsubfield = '0' AND tab != 4 ;

This SQL statement will set the "managed in tab" value to '4' for the tags you mentioned in your message (it's actually the 0 subfield in each tag that's managed in tab 3 by mistake).

Alternatively, you can edit each 4xx$0 subfield manually and set the "Managed in tab" dropdown to '4', but it will take longer ;-)


I hope this helps!


Kind regards,

Andreas

[1] https://koha-community.org/manual/22.11/en/html/administration.html#marc-bibliographic-frameworks

On 2023-02-22 11:25, libr...@ssst.edu.ba wrote:
Hello all,

I am new to both Koha and Linux, and I have been trying to learn how to use 
both as I want our library to move from an in-house developed system to Koha. I 
am in Bosnia, and we use UNIMARC, so I chose that as my MARC flavor during the 
installation. When doing the MARC bibliographic framework test, I got two 
errors:

itemtype NOT mapped     the biblioitems.itemtype field MUST :
                         - be mapped to a MARC subfield,
                         - the corresponding subfield MUST have "Authorized value" set to 
"itemtype"

subfields not in same tabs    Not all subfields for the following tags are in 
the same tab (or marked 'ignored').

Code    Description     Tag     Tabs in use
Default framework       410     3,4

The tabs in use for all tags are tabs 3,4 and the tags are:

410 to 413
421 to 425
430 to 437
440 to 448
451 to 456
461 to 464
470
481 to 482
488

I'm not sure how to fix this error? What do I need to do?


Best regards

Aida Đikić
_______________________________________________

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
_______________________________________________

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to