Hi,
We wonder if there are any report add-ons available for the repository: we want to be able to easily produce a snapshot for departments of our publications status for the current REF period, that we can update each month. At present we are doing this by exporting search results and manually adjusting the spreadsheet to be of use, which is understandably cumbersome.
Similarly, the default REF CC compliance report we can export does not currently provide a snapshot of compliance without a great deal of manual adjustment (adding EPrint ID numbers, omitting old versions of items and non-proceedings conference items, etc.).
We haven’t seen anything ourselves but assume there must already be a solution available. Or have other institutions just produced bespoke solutions for their specific needs?
Thanks
Paul Fox
Research Support Officer
01695 657 341 (Ext. 7341)
Social media: Twitter / Facebook / YouTube
Edge Hill Researchers, need help applying for external funding? Complete the survey on our wiki page: ow.ly/SyI29
Research Office
B223, Business School
Edge Hill University
St Helens Road, Ormskirk
Lancashire, L39 4QP
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/8d81b63c-29e3-4f9e-b04a-9787b146297d%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
Hi Paul
Similarly, we started off working with an export to .csv of an advanced search from our repository to get an idea of compliance, as the actual REF CC Report doesn’t indicate items that are ‘will be compliant’ or the department or School. One of the fields in the export spreadsheet - ‘hoa_compliant’ – holds the compliance ‘score’ from the REF CC tests. A score of 511 indicates a fully compliant record, a score of greater than 511 indicates there is an exception applies to the item and, and a score of 318 indicates that the item is one that ‘Will become compliant’ at the end of the embargo period (but we are still monitoring this one).
We then used this scoring approach to ask our Management Information team to create a compliance report (graph and table of items) by School indicating items that are compliant/will be compliant, items that are not compliant and items that have exceptions, using the University’s Cognos Analytics software. This provides a good overview of compliancy and indicates records that require further action.
Compliance scoring:
COMPLIANT => 1,
DEP => 2,
DEP_COMPLIANT => 4,
DEP_TIMING => 8,
DIS => 16,
DIS_DISCOVERABLE => 32,
ACC => 64,
ACC_TIMING => 128,
ACC_EMBARGO => 256,
EX_DEP => 512,
EX_ACC => 1024,
EX_TEC => 2048,
EX_OTH => 4096,
EX => 8192
More recently, a few staff in the Library have access to a test area of Cognos and we can now create our own ad hoc reports from our repository Sussex Research Online, and that is proving very useful at identifying any anomalies and seeing where further action is required to ensure compliance.
Best wishes,
Annette
P.S. Hi Chris – the php reports still going strong and very useful!
Annette Moore
Technical Services Librarian
The Library
University of Sussex
Brighton
BN1 9QL
T:01273 877046
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-...@googlegroups.com.
To post to this group, send email to eprints-uk...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/8d81b63c-29e3-4f9e-b04a-9787b146297d%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
eprints-uk-user-...@googlegroups.com.
To post to this group, send email to
eprints-uk...@googlegroups.com.
To view this discussion on the web, visit
https://groups.google.com/d/msgid/eprints-uk-user-group/CAL5gNXDGJGp%2BAvTvkwdH%2ByWZKzk3cVq1MObd89Px-aV%2B%3D9doCw%40mail.gmail.com.
Thank you all for the replies. While I’ll need to pass the things that require installation to the relevant parties here, it is helpful to see how others are tackling this problem.
Annette – your e-mail on compliance scoring in particular is immediately useful as I have seen that field in our export but had no way to decode it. Is the list of scoring (1 to 8192) what your MI team have reverse engineered or is it actually how EPrints calculates the 511 (exc. exceptions)?
Thanks
Paul
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/9BA23E1F2BD42949B19D03B00BA43F8E6DFB9253%40EX-PEV-MBX2.ad.susx.ac.uk.
Hi Paul,
The scoring comes from this code:
https://github.com/eprintsug/hefce_oa/blob/master/lib/plugins/HefceOA/Const.pm
If you're not programmatically inclined, the values might appear strange - they are a bitwise representation of the items' status.
In Excel, you could use the 'BITAND' function (https://support.office.com/en-gb/article/BITAND-function-8a2be3d7-91c3-4b48-9517-64548008563a) to check the state of the item.
Some examples (with the compliance value is stored in cell A1)
Formula Meaning
=BITAND(2,A1) is it 'deposit' compliant?
=BITAND(4,A1) is it 'deposit compliant' e.g. was a correct document version uploaded
=BITAND(8, A1) is it 'deposit timing' compliant e.g. was it deposited within the allowed timeframe
=BITAND(64,A1) is it 'access' compliant?
The values to use in these tests are in the 'Const.pm' file linked above - and copied here:
COMPLIANT => 1,
DEP => 2,
DEP_COMPLIANT => 4,
DEP_TIMING => 8,
DIS => 16,
DIS_DISCOVERABLE => 32,
ACC => 64,
ACC_TIMING => 128,
ACC_EMBARGO => 256,
EX_DEP => 512,
EX_ACC => 1024,
EX_TEC => 2048,
EX_OTH => 4096,
EX => 8192,
I hope that I've explained that in a useful way!
Cheers,
John
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/DB5PR06MB1575709DC50A89C87866C0EEE58D0%40DB5PR06MB1575.eurprd06.prod.outlook.com.
Hi Paul
Just to add, the scoring started to make sense for me when I realised that a fully compliant item (score 511) is a total of all the scores for the tests:
DEP => 2,
DEP_COMPLIANT => 4,
DEP_TIMING => 8,
DIS => 16,
DIS_DISCOVERABLE => 32,
ACC => 64,
ACC_TIMING => 128,
ACC_EMBARGO => 256
..plus 1 for compliant in all of the above COMPLIANT =>1
Annette
Annette Moore
Technical Services Librarian
The Library
University of Sussex
Brighton
BN1 9QL
T:01273 877046
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/DB6PR0301MB2311DF0266B542A2392F2DC0C48D0%40DB6PR0301MB2311.eurprd03.prod.outlook.com.
Hi,
Just to chip in as the developer of the original plugin, I wouldn't recommend using the hoa_compliant field directly. As already pointed out, the field is used to encode the test results in a special way - this is for scale/performance reasons (many test results can be stored without adding lots of fields to EPrints, it's easy to add further tests should they be needed). The field isn't designed to be 'human readable', nor guaranteed to encode results the same way in future versions.
I would suggest (gently :-) lobbying Jisc for an updated version of the plugin with improved reporting features now that these are becoming more important and better understood. The initial version really just focused on gathering the appropriate data and running the compliance tests (and I hope it's been working OK in this respect).
Best regards,
Tim
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/8d81b63c-29e3-4f9e-b04a-9787b146297d%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/CAL5gNXDGJGp%2BAvTvkwdH%2ByWZKzk3cVq1MObd89Px-aV%2B%3D9doCw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/9BA23E1F2BD42949B19D03B00BA43F8E6DFB9253%40EX-PEV-MBX2.ad.susx.ac.uk.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/DB5PR06MB1575709DC50A89C87866C0EEE58D0%40DB5PR06MB1575.eurprd06.prod.outlook.com.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/DB6PR0301MB2311DF0266B542A2392F2DC0C48D0%40DB6PR0301MB2311.eurprd03.prod.outlook.com.
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eprints-uk-user-group+unsub...@googlegroups.com.
To post to this group, send email to eprints-uk-user-group@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/eprints-uk-user-group/9BA23E1F2BD42949B19D03B00BA43F8E6DFC05B1%40EX-PEV-MBX2.ad.susx.ac.uk.
Hi Will,
As Mick says we already did some work on this creating our own reports as the ones supplied did not satisfy our needs .
If there were more complex functionality that we don’t have yet I could possibly see us adapting what we have already put in github EPrints for reports or emulating our reports in the plug-in. I am very keen to work together on this and avoid duplication of effort.
Can we articulate a clear state of play and requirements from the community?
Perhaps we need a get together or a more transparent way to share the key needs of the community.
Valerie McCutcheon
Research Information Manager
Direct Line: +44 (0)141-330-2674
Room 507
University of Glasgow Library
Hillhead Street
Glasgow G12 8QE
Chair of Consortia Advancing Standards in Research Administration Information (CASRAI) UK
and Open Access Special Interest Group Champion for UK Association of Research Managers and Administrators (ARMA)
http://www.gla.ac.uk/services/openaccess/

To be eligible for submission to the post-2014 REF, authors’ final peer-reviewed manuscripts of journals and conference papers accepted after 1 April 2016 must have been deposited in an institutional or subject repository as soon as possible after acceptance for publication.
HEFCE Policy for open access in the post-2014 Research Excellence Framework
From: eprints-uk...@googlegroups.com [mailto:eprints-uk...@googlegroups.com]
On Behalf Of Mick Eadie
Sent: 01 December 2016 16:56
To: EPrints UK User Group <eprints-uk...@googlegroups.com>
Subject: Re: EPrints reporting
thanks for this Will - it would be great to get all of us who are working separately on building ref compliance reports to feed into this work. Try and get something we can all use 'out the box' that meets all our needs - as i'm sure we're all doing very similar things (but separately!)....
--
You received this message because you are subscribed to the Google Groups "EPrints UK User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
eprints-uk-user-...@googlegroups.com.
To post to this group, send email to
eprints-uk...@googlegroups.com.
To view this discussion on the web, visit
https://groups.google.com/d/msgid/eprints-uk-user-group/da4f12dd-7ad6-4811-a387-f910384065ef%40googlegroups.com.