Hi Gonzalo, it not works in the way that you are assuming.
crisitem.* metadata are enhanced metadata automatically derived from linked entities. In you example crisitem.author.dept it is the department (orgunit) associated with the researcher page linked to the item via the dc.contributor.author metadata (more precisely the authority values of such metadata). The enhanced metadata are virtual metadata, added to the item at runtime and not stored at the database level in the metadatavalue table. You cannot edit enhanced metadata from the item, you need to edit the relevant information in linked entity, in your example the researcher page. If you are looking to a way to supply the department of the author during the submission so that this information is automatically stored in the researcher page once the item has been approved, you need to look to the ItemMetadataImportFiller see https://wiki.duraspace.org/display/DSPACECRIS/How+to+collect+data+about+CRIS+entities there is an explicit example to address that (see the definition of the bean with id = researcherPageCommonFillerMetadata). Please note that we are also working in improving the UI so that during the submission metadata related to other metadata are grouped together with the primary information, i.e. the affiliation will be shown as a text box just after each author name instead to have all the authors before all the affiliations, this will be available late this autumn or earlier if we found other interested parties. Hope this help, Andrea Il 03/07/2017 13:25, gonzalo perl ha scritto: Hello everybody I am trying to add enhanced metadata "cris item.author.dept" to the list of the page "edit item" I added the following authority control metadata in dspace.cfg file: ## It comes from ItemEnhancer configuration - see cris-metadata.enhancers.xml choices.plugin.crisitem.author.dept = OUAuthority authority.controlled.crisitem.author.dept = suggest authority.management.crisitem.author.dept = true And the following code to cris-metadata-enhanced.xml file <bean class="org.dspace.app.cris.discovery.CrisItemEnhancer"> <property name="alias" value="author" /> <property name="metadata"> <list> <value>dc.contributor.author</value> </list> </property> <property name="clazz"> <value>org.dspace.app.cris.model.ResearcherPage</value> </property> <property name="qualifiers2path"> <map> <entry key="dept"> <value>dept</value> </entry> </map> </property> </bean> But i get an 404 error. Any suggestion/help? Regards Gonzalo -- 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]<mailto:[email protected]>. To post to this group, send email to [email protected]<mailto:[email protected]>. Visit this group at https://groups.google.com/group/dspace-community<https://urlsand.esvalabs.com/?u=https%3A%2F%2Fgroups.google.com%2Fgroup%2Fdspace-community&e=8ef37f15&h=0ab2066a&f=n>. For more options, visit https://groups.google.com/d/optout<https://urlsand.esvalabs.com/?u=https%3A%2F%2Fgroups.google.com%2Fd%2Foptout&e=8ef37f15&h=4ae73911&f=n>. -- Questo messaggio e' stato analizzato con Libra ESVA ed e' risultato non infetto. Clicca qui per segnalarlo come spam.<http://esva1.business-e.it/cgi-bin/learn-msg.cgi?id=DE9B6400C8.AA5B9> -- Andrea Bollini Chief Technology and Innovation Officer 4Science, www.4science.it<http://www.4science.it> office: Via Edoardo D'Onofrio 304, 00155 Roma, Italy mobile: +39 333 934 1808 skype: a.bollini linkedin: andreabollini orcid: 0000-0002-9029-1854 an Itway Group Company Italy, France, Spain, Portugal, Greece, Turkey, Lebanon, Qatar, U.A.Emirates -- Questo messaggio e' stato analizzato da Libra ESVA ed e' risultato non infetto. This message was scanned by Libra ESVA and is believed to be clean. -- 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.
