Hello Raphael, there are other ways to check for missing metadata. Not all the metadata might be in the submission form. Some can be inherited from templates and later deleted accidentally. You may a) query the db:
All Items missing a metadata field SELECT item_id FROM item WHERE in_archive=true AND item_id NOT IN (SELECT item_id FROM metadatavalue WHERE metadata_field_id=[METADATAFIELDID]) ORDER BY item_id ; All Items in a specific collection missing a metadata field SELECT item_id FROM item WHERE in_archive=true AND owning_collection=[COLLECTIONID] AND item_id NOT IN (SELECT item_id FROM metadatavalue WHERE metadata_field_id=[METADATAFIELDID]) ORDER BY item_id ; Just replace [METADATAFIELDID] and [COLLECITONIID] with the right values. b) oai Create an own context or just a set use the DSpaceAtLeastOneMetadataFilter in combination with the notFilter. Hope this helps Clauda Jürgen Am 22.05.2017 um 19:01 schrieb Raphael Belchior:
Hello everybody My doubt is about the curation task, more specifically the option called "check for required metadata"as the dspace documentation says "examines item metadata and determines whether fields that the web submission ( input-forms.xml) marks as required are present" but when the task is concluded in to a collection or community the given information shows only the last register (handle). The question is "Can I extract in to a list all registers verified with their errors found and not only the last one as the task given to me?" My intension here is to safe time, we have thousands of handles and verifying one by one looking for the required camps not filled should be impossible to be done. If someone do the curation (in to the mining of verify the fill of required metadata) in another way or method please share your experiences here. Thank's a lot! - In attachment is been shown the result of the task made into a collection (only one register was returned but I've sure more then one should return problems) ------------------------------ Curation System - DSpace 5.x Documentation - DuraSpace Wiki <https://wiki.duraspace.org/display/DSDOC5x/Curation+System>
-- Claudia Juergen Eldorado Technische Universität Dortmund Universitätsbibliothek Vogelpothsweg 76 44227 Dortmund Tel.: +49 231-755 40 43 Fax: +49 231-755 40 32 [email protected] www.ub.tu-dortmund.de Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und vernichten Sie diese Mail. Vielen Dank. Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform (mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen Schriftstücks per Telefax erfolgen. Important note: The information included in this e-mail is confidential. It is solely intended for the recipient. If you are not the intended recipient of this e-mail please contact the sender and delete this message. Thank you. Without prejudice of e-mail correspondence, our statements are only legally binding when they are made in the conventional written form (with personal signature) or when such documents are sent by fax. -- You received this message because you are subscribed to the Google Groups "DSpace Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/dspace-community. For more options, visit https://groups.google.com/d/optout.
