<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><div class=""><br class=""></div>You can just add created_by and create_time ( and perhaps other fields like: last_modified_by, finding_aid_author ) to the resource_list_report.rb :<div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(223, 189, 34); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><b class="">diff --git a/reports/resources/resources_list_report/resources_list_report.rb b/reports/resources/resources_list_report/resources_list_report.rb</b></span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(223, 189, 34); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><b class="">index 96f200fed..ad3a96474 100644</b></span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(223, 189, 34); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><b class="">--- a/reports/resources/resources_list_report/resources_list_report.rb</b></span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(223, 189, 34); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><b class="">+++ b/reports/resources/resources_list_report/resources_list_report.rb</b></span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #4ed2e0" class="">@@ -9,7 +9,8 @@</span><span style="font-variant-ligatures: no-common-ligatures" class=""> class ResourcesListReport < AbstractReport</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">                        level_id as level,</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">                        resource_type_id as resource_type,</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">                        publish,</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(86, 0, 1); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">-                       restrictions</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #50db39" class="">+</span><span style="font-variant-ligatures: no-common-ligatures" class="">                       </span><span style="font-variant-ligatures: no-common-ligatures; color: #50db39" class="">restrictions,</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(80, 219, 57); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">+                       created_by, create_time</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">                from resource</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">                where repo_id = #{db.literal(repo_id)}"</span></div><div style="margin: 0px; font-stretch: normal; font-size: 17px; line-height: normal; color: rgb(205, 190, 151); background-color: rgba(122, 37, 30, 0.85);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">        end</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div><br class=""></div><div>And add those to the .yml files in that directory, otherwise you will get something like:</div><div><br class=""></div><div><dt style="float: left; padding: 0px; font-weight: bold; margin-right: 10px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;" class="">translation missing: en.reports.translation_defaults.created_by</dt><dd style="margin: 2px; padding: 0px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;" class="">admin</dd><dt style="float: left; padding: 0px; font-weight: bold; margin-right: 10px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;" class="">translation missing: en.reports.translation_defaults.create_time</dt><dd style="margin: 2px; padding: 0px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;" class="">2015-08-11 21:43:13 UTC</dd><div class=""><br class=""></div><div class="">( And we really should add a translation missing fallback to these reports to make customizing easier! ) </div></div><div><br class=""></div><div>That doesn’t make it easily sortable however. That would take more work. </div><div>Alternatively, once you have added those fields, you can use the json output format, and write a script, or use ‘jq’ to sort, group, and format the report before printing. However, if you need to group by author, it might just be simpler to run the report outside of archivesspace as a mysql query. </div><div><br class=""></div><div>If you wanted that sort of grouping as an ArchivesSpace report, you would need to write a new report, restructuring it as a subreport on resources created by each user. </div><div><br class=""></div><div><br class=""></div><div>— Steve M.</div><div><br class=""></div><div><br class=""></div><div><br class=""><blockquote type="cite" class=""><div class="">On Dec 8, 2020, at 6:51 PM, Cornwall, Daniel D (EED) <<a href="mailto:daniel.cornwall@alaska.gov" class="">daniel.cornwall@alaska.gov</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="WordSection1" style="page: WordSection1; caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Hello,<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">After fiddling with the reports module in 2.8 and looking at the documentation in ArchivesSpace help center I want to ask you if your institution keeps track of the number of finding aids that someone enters into ArchivesSpace and if so, how you track that. The Resources List Report  ALMOST fits my purposes but doesn’t list the audit information I’d need to filter when resource records were created or modified.<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">If you’re aware of this kind of functionality, or ideally a report that would produced a list of resource records with creation date by users, please let me know. Otherwise I’ll think about other ways to track.<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Thanks! - Daneil<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">==============================<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Daniel Cornwall<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Library Technology Consultant / OWL Program Manager<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Alaska State Library<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class="">Ph: 907-465-6332<o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><a href="https://lam.alaska.gov/daniel" class="">https://lam.alaska.gov/daniel</a><o:p class=""></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div></div><span style="caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">_______________________________________________</span><br style="caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">Archivesspace_Users_Group mailing list</span><br style="caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" style="font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br style="caret-color: rgb(0, 0, 0); font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" style="font-family: Menlo-Regular; font-size: 16px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a></div></blockquote></div><br class=""></div></body></html>