2024-11-25 Reporting SIG Meeting notes

 

Date

Nov 25, 2024How to Join the Meeting

Meetings are held on Zoom on the first 4 Mondays of each month at 11:00 am Eastern U.S. time (see this time in your time zone). The first and third Mondays focus on Reporting Development topics, and the second and fourth Mondays focus on Reporting Business topics.

Here are the Zoom details:

Join from PC, Mac, Linux, iOS or Android: https://openlibraryfoundation.zoom.us/j/601231377?pwd=ZVFtQWxUaTFLb1J3b1JPdlZqZU1lQT09

Or iPhone one-tap (US Toll):  +13017158592,,601231377# or +13126266799,,601231377#

Or Telephone:

    Dial: +1 408 638 0968 (US Toll) or +1 646 558 8656 (US Toll)

    Meeting ID: 601 231 377

   Find your local number: https://openlibraryfoundation.zoom.us/u/ketrxUP4uW

Attendees

 

Present?

Name

Organization

Present?

Name

Organization

 

Arthur Aguilera

University of Colorado, Boulder

 

Erin Block

University of Colorado, Boulder

 

Shannon Burke

Texas A&M University

 

Suzette Caneda

Stanford University

 

Mark Canney

Lehigh University

 

Dung-Lan Chen

Skidmore College

 

Lloyd Chittenden

Marmot

x

Ann Crowley

Cornell University

 

Tim Dannay

Mount Holyoke College

 

Danielle Dempsey

Villanova University

 

Axel Doerrer

University Mainz

 

Shelley Doljack

Stanford University

x

Stefan Dombek

Leipzig University

x

Jennifer Eustis

U. Massachusetts Amherst / Five College

 

Lynne Fors

Wellesley College

 

Vanessa French

Lehigh University

 

Lisa Furubotten

Texas A&M University

x

Mike Gorrell

Index Data

 

Alissa Hafele

Stanford University

 

Lucy Harrison

GALILEO

x

Kara Hart

Wellesley College

x

Andrew Henryson

Texas A&M University

 

Corrie Hutchinson

Index Data

 

Jamie Jesanis

MCPHS

 

Jeanette Kalchik

Stanford University

 

Harry Kaplanian

EBSCO

 

Sarah Kasten

University of Chicago

 

Tim Kiser

Michigan State University

 

Kevin Kishimoto

Stanford University

 

Ingolf Kuss

HBZ

 

Alexander Lao

Stanford University

x

Joanne Leary

Cornell University

 

Eliana Lima

Fenway Library Organization

 

Eric Luhrs

Lehigh University

x

Sharon Markus

Cornell University

 

Kathy McCarthy

EBSCO

 

Lisa McColl

Lehigh University

x

Linda Miller

Cornell University

 

Joseph Molloy

Spokane Public Library

 

Kathleen Moore

EBSCO

 

Nassib Nassar

Index Data

x

Elena O'Malley

Emerson

 

Tod Olson

University of Chicago

 

Jean Pajerek

Cornell University

 

Kimberly Pamplin

Texas A&M University 

 

Scott Perry

University of Chicago

 

Natalya Pikulik

Cornell University

 

Emily Sanford

Michigan State University

 

Bob Scheier

Holy Cross

x

Vandana Shah

Cornell University

 

Linnea Shieh

Stanford University

 

Rebekah Silverstein

Oklahoma State University

 

Susie Skowronek

Oakland University

 

Ken Smith

Valdosta State University

 

Kimberly Smith

Middle Tennessee State University

 

Clare Spitzer

Stanford University

 

Amelia Sutton

U. Massachusetts

 

Simona Tabacaru

Texas A&M University

 

Huey-Ning Tan

Stanford University

 

Vitus Tang

Stanford University

 

Christie Thomas

University of Chicago

x

Irina Trapido

Stanford University

 

Catherine Tuohy

Emmanuel College

 

Patrick Waite

U. Mass Amherst

Visitors:

 

 

x

John Malconian

Index Data

Discussion Items

 

Item

Who

Notes

Item

Who

Notes

Attendance

 

Attendance & Notes

  • Today's attendance-taker: Linda (or substitute)

Announcements and Reminders

Scott

Announcements:

  • About the Reporting SIG meeting schedule

    • Meetings are held on the first 4 Mondays of each month at 11:00 am Eastern U.S. time (see this time in your time zone). The first and third Mondays focus on Reporting Development topics, and the second and fourth Mondays focus on Reporting Business topics. 

    • "business" means topics like presentations on reporting functionality and new features, new reporting applications, surveys and studies on reporting, etc.

    • "development" means working on derived tables and report queries for the folio-analytics GitHub repository

    • "workshopping" queries could be scheduled during any of these meetings, and it would be great to have topics and/or questions in advance so we can prepare to walk through the answers/approaches, such as "how to I fix this inventory query to get rid of the duplicates?" or "what is the best way to calculate totals in this finance query?" 

  • November 25 and December 23 meetings are canceled

Ongoing Topics:

  • Workshopping your queries

    • part of each Reporting SIG business meeting will be devoted to time to work through any query questions you may have

    • please reach out to @Christie Thomas if you have a question you would like to "workshop" during an upcoming Reporting SIG meeting

 

  • Impacts of New Fields and Features (Sharon)

 

  • Upcoming Reporting SIG meeting topics (tentative)

    • Derived Tables

    • Reporting App use at various institutions

    • More Metadb training

 

  • Any new members?

    • Welcome/introductions

 

 

SIG Recruitment:

We will need to be recruiting for a variety of roles in the coming months. Please consider whether you would be interested. Please reach out to @Scott Perry or @Sharon Markus with any questions.

  • Representative for the Documentation Working Group 

 

 

Mapping Working Group

Mike

The task:

  1. We have over 80 Derived Tables scripts that currently extract JSON objects/arrays

  2. Metadb 1.4 can do this for us automatically by creating appropriate MAPPING commands

  3. We need to create the MAPPINGs

For today:

Review Metadb documentation which outlines how to create these mappings

Example of a Mapping created from a derived table creation script. From the po_lines_cost.sql script:

  • FROM:

jsonb_extract_path_text(pol.jsonb, 'cost', 'listUnitPrice')::numeric(19,4) AS po_line_list_unit_price_phys,
jsonb_extract_path_text(pol.jsonb, 'cost', 'quantityPhysical') AS po_line_quant_phys,
jsonb_extract_path_text(pol.jsonb, 'cost', 'listUnitPriceElectronic')::numeric(19,4) AS po_line_list_unit_price_elec,
jsonb_extract_path_text(pol.jsonb, 'cost', 'quantityElectronic') AS po_line_quant_elec,
jsonb_extract_path_text(pol.jsonb, 'cost', 'additionalCost')::numeric(19,4) AS po_line_additional_cost,
jsonb_extract_path_text(pol.jsonb, 'cost', 'currency') AS po_line_currency,
jsonb_extract_path_text(pol.jsonb, 'cost', 'discount')::numeric(19,4) AS po_line_discount,
jsonb_extract_path_text(pol.jsonb, 'cost', 'discountType') AS po_line_discount_type,
jsonb_extract_path_text(pol.jsonb, 'cost', 'poLineEstimatedPrice')::numeric(19,4) AS po_line_estimated_price

TO this in the Mapping file

CREATE DATA MAPPING FOR json FROM TABLE folio_orders.po_line__ COLUMN jsonb PATH '$.cost' TO 'cost';

Meta analysis. I have written a script that tries to collect all Fields+Tables that are being extracted. This might speed up the analysis

Divvying up the work. This spreadsheet might help.

 

 

 

Notes:

-multiple derived tables may be extracting the same data fields in the data arrays, so need to make sure we do not have duplicates

-see create json mappings section of Metadb documentation

-What would be the new name of the table after mapping? Is the suffix taken from the value of TO and "pasted" behind the underscores? (They are going to the “__t” tables)

-See the Derived Table JSON Mappings Workgroup folder on the Reporting SIG google drive folder to contribute to this project

 

 

 

Recurring Items (Updated weekly, but not always discussed in meeting)

Item

Who

Notes

Item

Who

Notes

Review of In-Progress Projects (Recurring)

 

 

Review the release notes for FOLIO Analytics, LDP, LDLite, LDP Reporting App, ldpmarc, Metadb Projects (Recurring)

 

 

Updates and Query Demonstrations from Various Reporting Related Groups and Efforts Projects (Recurring)

Community & Coordination, Reporting Subgroup Leads

Project updates

Reporting development is using small subgroups to address priorities and complete work on report queries.  Each week, these groups will share reports/queries with the Reporting SIG.  Reporting development team leads are encouraged to enter a summary of their work group activities below.

D-A-CH Working Group (D-Reporting)

  • A few libraries in Germany would like to start using Metadb soon. In most cases, hosting is in own data centers. The working group needs experience reports on what resources are required.

  • Ongoing topics: Workshopping, DBS statistics

    • Unification of reference data when mapping data from German union catalogs to FOLIO. Collaboration with the MM working group (D-A-CH).

    • Statistics after data anonymization according to GDPR. Collaboration with the RA/UM working group (D-A-CH).

  • Meetings: Contact @Stefan Dombek if you would like to get a calendar invitation

Reporting SIG Documentation Subgroup

  • Quesnelia documentation is live on https://docs.folio.org/docs/

  • Ramsons documentation is in development

  • Additional Context

    • The Reporting SIG has representation on the Documentation Working Group, which is building end-user documentation for https://docs.folio.org/docs/ (mostly linking to existing documentation over on GitHub)

 

For all recent work on FOLIO Reporting SQL development:

 

FOLIO Product Council

Jennifer Eustis

2024-10-31 Product Council Meeting Notes

  • FOLIO Bugfest starts on 11/11 for 2 weeks. There is a real need for testers.

  • New Claiming App (Sunflower). With Sunflower, there will be a new App for claiming. This app will simplify the identification of late pieces and allow institutions to send claims to vendors.

2024-10-17 Product Council Agenda and Meeting Notes

PC is looking at goals for this year. One goal is working on prioritization. The PC would like to be able to understand what the priorities are for each SIG and possible gaps. Other SIGs are creating Implementers pages through the use of Jira dashboards and lists of issues. Examples are:

Acquisitions SIG: Acquisitions/Resource Management implementers

Data Import: Data Import Implementers Topic Tracker

BELA: Bulk Edit Resource Management Implementation Topics

Each SIG and working group approaches this slightly differently depending on the needs of the group. What would work here to communicate the priorities and gaps with FOLIO reporting to the PC?